irctk

libircclient binding for scripts
git clone https://a3nm.net/git/irctk/
Log | Files | Refs | README

tests_sequential.sh (269B)


      1 #!/bin/bash
      2 
      3 cd test
      4 # track.sh is not reliable
      5 for t in *.sh
      6 do
      7   echo -n "$t... "
      8   cd ..
      9   ./runtest.sh ${t#test/}
     10   cd test
     11   #./$t || { echo "FAILED!"; exit 1; }
     12   #setsid ./$t || echo "FAILED!"
     13   #echo "passed."
     14 done
     15 
     16 # report valgrind errors
     17 grep -C20 0x *.log
     18