1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00

test: Add top-level README and run script

This commit is contained in:
Alberto Bertogli
2016-09-04 11:21:19 +01:00
parent 905161c537
commit 2c90281c11
2 changed files with 40 additions and 0 deletions

17
test/run.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
set -e
. $(dirname ${0})/util/lib.sh
init
FAILED=0
for i in t-*; do
echo $i ...
setsid -w $i/run.sh
FAILED=$(( $FAILED + $? ))
echo
done
exit $FAILED