From: Matthias Braun Date: Sat, 31 May 2008 07:52:22 +0000 (+0000) Subject: add shouldpass directory to testscript X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=296ab8fa3a990f12f9be8e8fbf0f0db9ed451e8d;p=cparser add shouldpass directory to testscript [r19875] --- diff --git a/parsetest/do_tests.sh b/parsetest/do_tests.sh index 50c19f9..acd51f0 100755 --- a/parsetest/do_tests.sh +++ b/parsetest/do_tests.sh @@ -1,7 +1,7 @@ #!/bin/bash rm -f messages.cparser messages.gcc -for i in *.c; do +for i in *.c shouldpass/*.c; do echo -n "Compile $i..." ../build/cparser $i -O3 -o prog.cparser >> messages.cparser 2>&1 || echo -n " CPARSER COMPILE FAILED" gcc -m32 -std=gnu99 $i -O3 -o prog.gcc >> messages.gcc 2>&1 || echo -n " GCC COMPILE FAILED"