From ea5e81bd6a3376232bf4747b2fa2e0a91c19b337 Mon Sep 17 00:00:00 2001 From: grischka Date: Sat, 18 Apr 2009 14:28:45 +0200 Subject: new subdirs: include, lib, tests --- gcctestsuite.sh | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100755 gcctestsuite.sh (limited to 'gcctestsuite.sh') diff --git a/gcctestsuite.sh b/gcctestsuite.sh deleted file mode 100755 index bd9204b..0000000 --- a/gcctestsuite.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh - -TESTSUITE_PATH=$HOME/gcc/gcc-3.2/gcc/testsuite/gcc.c-torture -TCC="./tcc -B. -I. -DNO_TRAMPOLINES" -rm -f tcc.sum tcc.log -nb_failed="0" - -for src in $TESTSUITE_PATH/compile/*.c ; do - echo $TCC -o /tmp/test.o -c $src - $TCC -o /tmp/test.o -c $src >> tcc.log 2>&1 - if [ "$?" == "0" ] ; then - result="PASS" - else - result="FAIL" - nb_failed=$[ $nb_failed + 1 ] - fi - echo "$result: $src" >> tcc.sum -done - -for src in $TESTSUITE_PATH/execute/*.c ; do - echo $TCC $src - $TCC $src >> tcc.log 2>&1 - if [ "$?" == "0" ] ; then - result="PASS" - else - result="FAIL" - nb_failed=$[ $nb_failed + 1 ] - fi - echo "$result: $src" >> tcc.sum -done - -echo "$nb_failed test(s) failed." >> tcc.sum -echo "$nb_failed test(s) failed." -- cgit v1.3.1