File: gcctestsuite.sh

package info (click to toggle)
tcc 0.9.23-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,052 kB
  • ctags: 17,600
  • sloc: ansic: 42,408; asm: 477; sh: 358; perl: 306; makefile: 270
file content (33 lines) | stat: -rwxr-xr-x 750 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/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."