Unit Tests - run_all

- Added script to run all unit tests and capture output.
This commit is contained in:
Paul Beckingham 2009-03-15 17:38:54 -04:00
parent 8efd8620c8
commit f8af5d999a

11
src/tests/run_all Executable file
View file

@ -0,0 +1,11 @@
!# /bin/bash
date > all.log
for i in *.t
do
./$i >> all.log 2>&1
done
date >> all.log