Skip to content

Commit

Permalink
Merge pull request #22 from judovana/disbaleResults
Browse files Browse the repository at this point in the history
Allowed suer to disable taps and junit results
  • Loading branch information
judovana authored Feb 29, 2024
2 parents 8b3ba8f + b1b7d01 commit a4660cb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,12 @@ $gc=$one_result"
jtrTarball=churn${NOCOMP}${STAMP}.jtr.xml.tar.gz
resultsTapFile=churn${NOCOMP}${STAMP}.tap
set +x
junitResults
tapResults
if [ "x$CHURN_JUNIT" == "" -o "x$CHURN_JUNIT" == "true" ] ; then
junitResults
fi
if [ "x$CHURN_TAP" == "" -o "x$CHURN_TAP" == "true" ] ; then
tapResults
fi
set -x
popd

Expand Down

0 comments on commit a4660cb

Please sign in to comment.