Skip to content
Snippets Groups Projects
Commit 7388b81e authored by Sören Henning's avatar Sören Henning
Browse files

Minor format fixes for smoketest all runner

parent 5647ac75
No related branches found
No related tags found
1 merge request!232Add smoke tests for benchmark
Pipeline #6396 passed
......@@ -4,4 +4,4 @@ find . -name 'test.sh' -type f -exec dirname {} \; |
sort |
xargs -I %s sh -c "./smoketest-runner.sh %s 1>&2; echo $?" |
sort |
awk '{count[$1!=0]++} END {print count[0] " tests successful, " count[1] " test failed."}; exit count[1]'
awk 'BEGIN {count[0]=0; count[1]=0} {count[$1!=0]++} END {print count[0] " tests successful, " count[1] " test failed."; exit count[1]}'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment