scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

chktest.sh (197B)


      1 #!/bin/sh
      2 
      3 ulimit -c 0
      4 rm -f test.log
      5 
      6 for i in *-*.sh
      7 do
      8 	printf "Test: %s\n\n" $i >> test.log
      9 	(./$i >> test.log 2>&1 && printf '[PASS]\t' || printf '[FAIL]\t'
     10 	echo "$i") | tee -a test.log
     11 done