Skip to content

Commit

Permalink
Using consistently $() instead of $ and ${}
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Mar 12, 2024
1 parent f5e3459 commit 0822870
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions system/churn/playlist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@
export JREJDK="jdk" ; \
export OTOOL_garbageCollector="ALL" ; \
export DURATION="18000" ; \
if [ "x${CHURN_TAP}" == "x" ] ; then export CHURN_TAP=false ; fi ; \
export TMPRESULTS="$(Q)$(REPORTDIR)$(D)report$(Q)"; \
cd $TMPRESULTS ; \
bash "$(TEST_ROOT)$(D)system$(D)churn$(D)churn$(D)run.sh"; \
if [ "x$(CHURN_TAP)" == "x" ] ; then export CHURN_TAP=false ; fi ; \
bash "$(TEST_ROOT)$(D)system$(D)churn$(D)churn$(D)run.sh"; \
$(TEST_STATUS)
</command>
<levels>
Expand Down Expand Up @@ -50,12 +48,10 @@
</disables>
<command>
export JREJDK="jdk" ; \
export OTOOL_garbageCollector="${CHURN_GCS}" ; \
export DURATION="${CHURN_DURATION}" ; \
if [ "x${CHURN_TAP}" == "x" ] ; then export CHURN_TAP=true ; fi ; \
export TMPRESULTS="$(Q)$(REPORTDIR)$(D)report$(Q)"; \
cd $TMPRESULTS ; \
bash "$(TEST_ROOT)$(D)system$(D)churn$(D)churn$(D)run.sh" $(APPLICATION_OPTIONS); \
export OTOOL_garbageCollector="$(CHURN_GCS)" ; \
export DURATION="$(CHURN_DURATION)" ; \
if [ "x$(CHURN_TAP)" == "x" ] ; then export CHURN_TAP=true ; fi ; \
bash "$(TEST_ROOT)$(D)system$(D)churn$(D)churn$(D)run.sh" $(APPLICATION_OPTIONS); \
$(TEST_STATUS)
</command>
<levels>
Expand Down

0 comments on commit 0822870

Please sign in to comment.