Commit simple script to run regression tests: src/examples/test-*.rla.

This commit is contained in:
Jesse D. McDonald 2010-04-12 21:12:23 -05:00
parent 314e167e6e
commit 9f351abd86
1 changed files with 5 additions and 0 deletions

5
run-tests.sh Executable file
View File

@ -0,0 +1,5 @@
#! /bin/sh
for a in src/examples/test-*.rla; do
echo -n "$a: ";
./rosella "$a";
done