Skip to content

Commit

Permalink
added proper quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Feb 27, 2024
1 parent b3fbe58 commit 00dda3d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions functional/churn/playlist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
<test>
<testCaseName>churn_1m_all</testCaseName>
<command>
export OTOOL_JDK_VERSION=$(JDK_VERSION) ; \
export OTOOL_JDK_VERSION="$(JDK_VERSION)" ; \
export JREJDK="jdk" ; \
export OTOOL_garbageCollector=ALL ; \
export DURATION=60 ; \
export TMPRESULTS=$(Q)$(REPORTDIR)$(D)report$(Q); \
export OTOOL_garbageCollector="ALL" ; \
export DURATION="60" ; \
export TMPRESULTS="$(Q)$(REPORTDIR)$(D)report$(Q)"; \
cd $TMPRESULTS ; \
bash $(TEST_ROOT)$(D)functional$(D)churn$(D)churn$(D)run.sh; \
bash "$(TEST_ROOT)$(D)functional$(D)churn$(D)churn$(D)run.sh"; \
$(TEST_STATUS)
</command>
<levels>
Expand All @@ -39,13 +39,13 @@
</test>
<testCaseName>churn_5h_all</testCaseName>
<command>
export OTOOL_JDK_VERSION=$(JDK_VERSION) ; \
export OTOOL_JDK_VERSION="$(JDK_VERSION)" ; \
export JREJDK="jdk" ; \
export OTOOL_garbageCollector=ALL ; \
export DURATION=18000 ; \
export TMPRESULTS=$(Q)$(REPORTDIR)$(D)report$(Q); \
export OTOOL_garbageCollector="ALL" ; \
export DURATION="18000" ; \
export TMPRESULTS="$(Q)$(REPORTDIR)$(D)report$(Q)"; \
cd $TMPRESULTS ; \
bash $(TEST_ROOT)$(D)functional$(D)churn$(D)churn$(D)run.sh; \
bash "$(TEST_ROOT)$(D)functional$(D)churn$(D)churn$(D)run.sh"; \
$(TEST_STATUS)
</command>
<levels>
Expand Down

0 comments on commit 00dda3d

Please sign in to comment.