Skip to content

Commit

Permalink
Crypto test original target now allows to run kereberos tests (#5248)
Browse files Browse the repository at this point in the history
if both
  SKIP_AGENT_TESTS=false
  AGENT_HOSTNAME=some.krb.enabled.agent
are provided, the 5 kerberos based tests will run too
  • Loading branch information
judovana authored May 10, 2024
1 parent 629876f commit f76dfc8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions functional/security/Crypto/playlist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@
</disable>
</disables>
<command>
JTREG_HOME="$(TEST_RESROOT)$(D)jtreg" \
SKIP_AGENT_TESTS=1 $(TEST_ROOT)$(D)functional$(D)security$(D)Crypto$(D)CryptoTest$(D)run.sh "$(TEST_JDK_HOME)" ; $(TEST_STATUS)
export JTREG_HOME="$(TEST_RESROOT)$(D)jtreg" ; \
if [ "x${SKIP_AGENT_TESTS}" = "x" ] ; then export SKIP_AGENT_TESTS=1 ; fi ; \
$(TEST_ROOT)$(D)functional$(D)security$(D)Crypto$(D)CryptoTest$(D)run.sh "$(TEST_JDK_HOME)" ; $(TEST_STATUS)
</command>
<features>
<feature>FIPS140_2:nonapplicable</feature>
Expand Down

0 comments on commit f76dfc8

Please sign in to comment.