Skip to content

Commit

Permalink
Improve the runner scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
wichtounet committed Aug 25, 2017
1 parent 0ac5857 commit 57dfcec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/test_runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ set -e

function etl_run {
make clean
make $ETL_THREADS debug/bin/etl_test
./debug/bin/etl_test
time make $ETL_THREADS debug/bin/etl_test
time ./debug/bin/etl_test
}

# Disable default options
Expand Down
6 changes: 4 additions & 2 deletions scripts/test_runner_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ set -e

function etl_run {
make clean
make $ETL_THREADS debug/bin/etl_test
./debug/bin/etl_test --reporter=junit --out catch_report_${1}.xml
time make $ETL_THREADS debug/bin/etl_test

echo "Run the tests"
time ./debug/bin/etl_test --reporter=junit --out catch_report_${1}.xml

if [ "$ETL_LCOV" == "" ]
then
Expand Down

0 comments on commit 57dfcec

Please sign in to comment.