blob: dadba655f2aa34c07cd5f60ab88d54607ff1e430 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/bin/sh
2
3for 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; \
8done