File: runtests

package info (click to toggle)
frobby 0.9.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,616 kB
  • sloc: cpp: 30,134; sh: 1,184; makefile: 306; ansic: 102; lisp: 10
file content (10 lines) | stat: -rwxr-xr-x 160 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env sh

test="run_$1_test"
shift

for t in `ls -S -r *.test`
do
  ../testScripts/$test `basename $t .test` $*
  if [ $? != 0 ]; then exit 1; fi
done