-
-
Notifications
You must be signed in to change notification settings - Fork 314
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
jck_custom supports multiple testcases and different testsuite #5068
Comments
Current jck_custom can't show the testResult ( no testcase information to verify how many and which testcases have run). For example set custom_target as a directory api/java_applet/AppletStub, there is no information of which or how many tests have been run temurin-compliance/job/Grinder/. |
Again, can't help but think there are some options that can be used when running the underlying javatest harness that would make the output more verbose (much like jtreg does). From Example 5 on page 21 of https://docs.oracle.com/javacomponents/javatest-4-6/cli-user-guide/CLI.pdf for example:
What additional info is available in console with -verbose turned on? |
This is specific to jck_custom target. I think it is related with migration to JavaTestUtil, which doesn't update the running process of jck_custom. #4512 |
jck_custom is broken issue opened #5071 |
Current JavatestUtils.java supports tests with multiple sub-folders ( or multiple testcases) separated by semicolon ( arg tests=sub-folder1;subfolder2 or tests=testcase1;testcase2 or tests=subfolder;testcase ) by changing the tests to be listed with a single space ( the way JCK harness expects). Trying with multiple testcases in grinder only the first testcase can be running successfully. The other tests will be cut as sh command and will not run, which also set the job as successful . temurin-compliance/job/Grinder/4059/
The console output shows the custom target has been correctly parsed as expected format
|
As we are running the target by make story text that follows a semicolon (;) will be executed as shell commands or build script. Instead of using ; to separate the testcases we can use a space, which is the exact same way JCK harness expects and is the same way as jdk_custom case. |
As JavatestUtil only load testArgs with key,value pairs we can use double quote for tests args. |
Enhance jck_custom to support multiple testcases if possible, which would make #4498 more useful feature.
The text was updated successfully, but these errors were encountered: