diff options
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl/run-ptest | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/run-ptest b/meta/recipes-devtools/tcltk/tcl/run-ptest index 5b9127784e..51e1e4aa7b 100644 --- a/meta/recipes-devtools/tcltk/tcl/run-ptest +++ b/meta/recipes-devtools/tcltk/tcl/run-ptest | |||
@@ -3,7 +3,11 @@ | |||
3 | # clock.test needs a timezone to be set | 3 | # clock.test needs a timezone to be set |
4 | export TZ="Europe/London" | 4 | export TZ="Europe/London" |
5 | export TCL_LIBRARY=library | 5 | export TCL_LIBRARY=library |
6 | SKIPPED_TESTS= | 6 | |
7 | # Some tests are overly strict with timings and fail on loaded systems. | ||
8 | # See bugs #14825 #14882 #15081. | ||
9 | SKIPPED_TESTS='cmdMZ-6.6 exit-1.* socket-* socket_inet-*' | ||
10 | |||
7 | for i in `ls tests/*.test | awk -F/ '{print $2}'`; do | 11 | for i in `ls tests/*.test | awk -F/ '{print $2}'`; do |
8 | ./tcltest tests/all.tcl -file $i -skip "$SKIPPED_TESTS" >$i.log 2>&1 | 12 | ./tcltest tests/all.tcl -file $i -skip "$SKIPPED_TESTS" >$i.log 2>&1 |
9 | grep -q -F -e "Files with failing tests:" -e "Test files exiting with errors:" $i.log | 13 | grep -q -F -e "Files with failing tests:" -e "Test files exiting with errors:" $i.log |