diff options
Diffstat (limited to 'tools/ci/scripts/runtest.sh')
-rwxr-xr-x | tools/ci/scripts/runtest.sh | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/ci/scripts/runtest.sh b/tools/ci/scripts/runtest.sh index 7707a34aa..4b0320fed 100755 --- a/tools/ci/scripts/runtest.sh +++ b/tools/ci/scripts/runtest.sh @@ -74,18 +74,15 @@ function kill_app { } function final_log { - export DATA=$(cat logs/run.log) - if [[ -z "${DATA}" ]]; then + if [[ ! -s logs/run.log ]]; then echo "Error: no output" exit 1 fi cat logs/run.log - export DATA=$(grep "[.]cpp" logs/run.log) - if [[ -n "${DATA}" ]]; then - echo "Error: possible leak detected" - echo "${DATA}" + if grep "[.]cpp" logs/run.log; then + echo "Error: possible leak detected, see above" exit 1 fi } |