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

Add script for running all smoketests at once

parent 9f759060
No related branches found
No related tags found
1 merge request!232Add smoke tests for benchmark
Pipeline #6394 passed
#!/bin/sh
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]'
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