Home
       chktest.sh - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR 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