We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed65182 commit 9e0e1c9Copy full SHA for 9e0e1c9
tests/features/java/runtime.feature
@@ -25,3 +25,13 @@ Feature: Openshift OpenJDK Runtime tests
25
| variable | value |
26
| JAVA_OPTS | |
27
Then container log should not contain -XX:MaxRAMPercentage
28
+
29
+ @ubi9
30
+ Scenario: Check JAVA_OPTS overrides JAVA_OPTS_APPEND
31
+ piv
32
+ Given container is started with env
33
+ | variable | value |
34
+ | JAVA_OPTS | -verbose:gc |
35
+ | JAVA_OPTS_APPEND | -Xint |
36
+ Then container log should contain -verbose:gc
37
+ And container log should not contain -Xint
0 commit comments