-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #464 from jhuttana/ubi9-runtime-feature
[OPENJDK-2177] Split the tests inside tests/features/java/runtime.feature to couple them with appropriate modules
- Loading branch information
Showing
2 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@ubi9/openjdk-11 | ||
@ubi9/openjdk-17 | ||
@ubi9/openjdk-21 | ||
Feature: Openshift OpenJDK Runtime tests (OPENJDK-474) | ||
|
||
Scenario: Ensure JAVA_ARGS is passed through, diagnostic options work correctly, JVM_ARGS not present in run script, OPENJDK-474 JAVA_ARGS not repeated | ||
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from undertow-servlet | ||
| variable | value | | ||
| JAVA_ARGS | unique | | ||
| JAVA_DIAGNOSTICS | true | | ||
Then container log should contain /deployments/undertow-servlet.jar unique | ||
And container log should contain -XX:NativeMemoryTracking=summary | ||
And file /usr/local/s2i/run should not contain JVM_ARGS | ||
And container log should not contain unique unique |