-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#969: Use new CTPG parser in java vm #455
#969: Use new CTPG parser in java vm #455
Conversation
f156bf4
to
cc7e7d1
Compare
2b0ba44
to
77e9955
Compare
std::make_pair("\\f-Dhttp.agent=ABCDEF", "-Dhttp.agent=ABCDEF"), | ||
std::make_pair("\\v-Dhttp.agent=ABCDEF", "-Dhttp.agent=ABCDEF") | ||
}; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have a test for escaped whitespace in the middle of a option, because this was one of the cases that was as bug reported
-Dhttp.agent=ABC\ DEF;
This is less of an option line parser issue then an issue of the value handling of the Jvm options splitter
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This bug is not fixed yet.
My plan was to fix exasol/script-languages-release#878 in another PR, in order to keep a clean git history.
In the scope of #878 I will extend the test here.
exaudfclient/base/javacontainer/script_options/parser_ctpg_script_importer.cc
Show resolved
Hide resolved
exaudfclient/base/javacontainer/script_options/parser_ctpg_script_importer.cc
Show resolved
Hide resolved
exaudfclient/base/javacontainer/script_options/parser_ctpg_script_importer.cc
Show resolved
Hide resolved
exaudfclient/base/javacontainer/script_options/parser_ctpg_script_importer.cc
Show resolved
Hide resolved
Parse only lines which contain a '%'.
exaudfclient/base/javacontainer/script_options/parser_ctpg_script_importer.cc
Outdated
Show resolved
Hide resolved
…ipt_importer.cc Co-authored-by: Torsten Kilias <[email protected]>
Background: Tests need to run under Ubuntu 24.04 or later (because of ASAN). installUdfClientDeps.sh is tested only on Ubuntu 22.04.
related to exasol/script-languages-release#969
Please note: The unit tests at https://github.com/exasol/script-languages/blob/master/exaudfclient/base/javacontainer/test/cpp/javacontainer_test.cc are being re-used to test identical behavior of both parser: The old (named legacy) parser, and the new (based on CTPG) parser.