summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/tcltk/tcl/run-ptest2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/run-ptest b/meta/recipes-devtools/tcltk/tcl/run-ptest
index 22bb69ae0d..6d52f34a9f 100644
--- a/meta/recipes-devtools/tcltk/tcl/run-ptest
+++ b/meta/recipes-devtools/tcltk/tcl/run-ptest
@@ -2,7 +2,7 @@
2 2
3for i in `ls tests/*.test | awk -F/ '{print $2}'`; do 3for i in `ls tests/*.test | awk -F/ '{print $2}'`; do
4 TCL_LIBRARY=library ./tcltest tests/all.tcl -file $i >$i.log 2>&1 4 TCL_LIBRARY=library ./tcltest tests/all.tcl -file $i >$i.log 2>&1
5 grep -q "^Files with failing tests:" $i.log 5 grep -q -F -e "Files with failing tests:" -e "Test files exiting with errors:" $i.log
6 if [ $? -eq 0 ]; then 6 if [ $? -eq 0 ]; then
7 echo "FAIL: $i" 7 echo "FAIL: $i"
8 cat $i.log 8 cat $i.log