Skip to content

Commit

Permalink
Merge pull request #7014 from llxia/test7
Browse files Browse the repository at this point in the history
Use / instead of $(D) in testEnv.mk
  • Loading branch information
Shelley Lambert committed Sep 10, 2019
2 parents b2e5ef8 + 7e7c12e commit d499be6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/TestConfig/testEnv.mk
Expand Up @@ -27,10 +27,10 @@ testEnvTeardown:

ifneq (,$(findstring JITAAS,$(TEST_FLAG)))
testEnvSetup:
$(TEST_JDK_HOME)$(D)bin$(D)java -XX:StartAsJITServer &
$(TEST_JDK_HOME)/bin/java -XX:StartAsJITServer &

testEnvTeardown:
pkill -9 -xf "$(TEST_JDK_HOME)$(D)bin$(D)java -XX:StartAsJITServer"; true
pkill -9 -xf "$(TEST_JDK_HOME)/bin/java -XX:StartAsJITServer"; true

RESERVED_OPTIONS += -XX:+UseJITServer
endif

0 comments on commit d499be6

Please sign in to comment.