test: run tests/tests2 tests.

This commit is contained in:
Jan Nieuwenhuizen 2018-10-12 21:19:44 +02:00
parent 6d88f740dd
commit 90075d68bd
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 2 deletions

View File

@ -304,11 +304,11 @@ mkdir -p scaffold/tinycc
expect=$(echo $broken | wc -w)
for t in $tests; do
if [ ! -f $MES_PREFIX/scaffold/tinycc/"$t.c" ]; then
if [ ! -f tests/tests2/"$t.c" ]; then
echo ' [SKIP]'
continue;
fi
sh test.sh "$MES_PREFIX/scaffold/tinycc/$t" &> scaffold/tinycc/"$t".log
sh test.sh tests/tests2/"$t" &> tests/tests2/"$t".log
r=$?
total=$((total+1))
if [ $r = 0 ]; then