File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
modules/jlink/tests/features Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,10 @@ Scenario: Ensure S2I_ENABLE_JLINK is not set to true
12
12
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from quarkus-quickstarts/getting-started-3.0.1.Final-nos2i
13
13
Then container log should not contain S2I_ENABLE_JLINK=true
14
14
And run bash -c "test ! -d /tmp/jre && echo PASS" in container and immediately check its output for PASS
15
+
16
+ Scenario : Check that /tmp/jre/bin/java and /tmp/jre/lib/modules exist post s2i build if jlink is enabled.
17
+ Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from quarkus-quickstarts/getting-started-3.9.2-uberjar
18
+ | variable | value |
19
+ | S2I_ENABLE_JLINK | true |
20
+ Then container log should contain S2I_ENABLE_JLINK=true
21
+ and run bash -c "test -d /tmp/jre/bin/java && test -d /tmp/jre/lib/modules && echo PASS" in container and immediately check its output for PASS
You can’t perform that action at this time.
0 commit comments