From efc69edb600f330e4fa8b0a3c2579e284c2ab99a Mon Sep 17 00:00:00 2001 From: Fabian Arrotin Date: Aug 01 2019 14:30:20 +0000 Subject: added simple serial-tests.sh wrapper to launch all tests with results Signed-off-by: Fabian Arrotin --- diff --git a/serial-tests.sh b/serial-tests.sh new file mode 100755 index 0000000..a5cc439 --- /dev/null +++ b/serial-tests.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# This script would process all tests, one by one, so that we can have a look at which one[s] failed as a whole result +for i in success fail;do + test -e $i && rm $i +done + +time for i in tests/* ; do + ./runtests.sh ${i/tests\//} && echo ${i/tests\//} >> success || echo ${i/tests\//} >> fail +done + +wc -l fail success +