From f8af5d999af800850cd0d7792fc03158cb1ee288 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 15 Mar 2009 17:38:54 -0400 Subject: [PATCH] Unit Tests - run_all - Added script to run all unit tests and capture output. --- src/tests/run_all | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 src/tests/run_all diff --git a/src/tests/run_all b/src/tests/run_all new file mode 100755 index 000000000..f92ea5412 --- /dev/null +++ b/src/tests/run_all @@ -0,0 +1,11 @@ +!# /bin/bash + +date > all.log + +for i in *.t +do + ./$i >> all.log 2>&1 +done + +date >> all.log +