summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcltk/tcl/run-ptest
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/tcltk/tcl/run-ptest')
-rw-r--r--meta/recipes-devtools/tcltk/tcl/run-ptest9
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/run-ptest b/meta/recipes-devtools/tcltk/tcl/run-ptest
index a403a74bb6..be067f13ea 100644
--- a/meta/recipes-devtools/tcltk/tcl/run-ptest
+++ b/meta/recipes-devtools/tcltk/tcl/run-ptest
@@ -1,9 +1,8 @@
1#!/bin/sh 1#!/bin/sh
2 2
3# clock.test needs a timezone to be set 3export TCL_LIBRARY=@libdir@/tcl/ptest/library
4export TZ="Europe/London"
5export TCL_LIBRARY=library
6export ERROR_ON_FAILURES=1 4export ERROR_ON_FAILURES=1
5export LANG=en-US.UTF-8
7 6
8# Some tests are overly strict with timings and fail on loaded systems. 7# Some tests are overly strict with timings and fail on loaded systems.
9SKIP="" 8SKIP=""
@@ -15,8 +14,12 @@ SKIP="$SKIP cmdMZ-6.6"
15SKIP="$SKIP exit-1.\*" 14SKIP="$SKIP exit-1.\*"
16# 15407 15421 15# 15407 15421
17SKIP="$SKIP \*io-46.1" 16SKIP="$SKIP \*io-46.1"
17# io-13.6 explicitly says it can fail on slow/loaded machines
18SKIP="$SKIP io-13.6"
18# 14825 19# 14825
19SKIP="$SKIP socket-\* socket_inet-\*" 20SKIP="$SKIP socket-\* socket_inet-\*"
21# tries to access google.com
22SKIP="$SKIP httpProxy-\*"
20 23
21for i in tests/*.test; do 24for i in tests/*.test; do
22 i=$(basename $i) 25 i=$(basename $i)