Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame^] | 1 | #!/bin/sh |
2 | |||||
3 | for i in `ls tests/*.test |awk -F/ '{print $2}'`; \ | ||||
4 | do TCL_LIBRARY=library ./tcltest tests/all.tcl -file $i >$i.tmp 2>&1; \ | ||||
5 | grep -q "^Files with failing tests:" $i.tmp; \ | ||||
6 | if [ $? -eq 0 ]; then echo "FAIL: $i"; \ | ||||
7 | else echo "PASS: $i"; rm -f $i.tmp; fi; \ | ||||
8 | done |