diff options
Diffstat (limited to 'meta/recipes-devtools/tcltk/tcl/run-ptest')
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl/run-ptest | 9 |
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 | 3 | export TCL_LIBRARY=@libdir@/tcl/ptest/library |
4 | export TZ="Europe/London" | ||
5 | export TCL_LIBRARY=library | ||
6 | export ERROR_ON_FAILURES=1 | 4 | export ERROR_ON_FAILURES=1 |
5 | export 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. |
9 | SKIP="" | 8 | SKIP="" |
@@ -15,8 +14,12 @@ SKIP="$SKIP cmdMZ-6.6" | |||
15 | SKIP="$SKIP exit-1.\*" | 14 | SKIP="$SKIP exit-1.\*" |
16 | # 15407 15421 | 15 | # 15407 15421 |
17 | SKIP="$SKIP \*io-46.1" | 16 | SKIP="$SKIP \*io-46.1" |
17 | # io-13.6 explicitly says it can fail on slow/loaded machines | ||
18 | SKIP="$SKIP io-13.6" | ||
18 | # 14825 | 19 | # 14825 |
19 | SKIP="$SKIP socket-\* socket_inet-\*" | 20 | SKIP="$SKIP socket-\* socket_inet-\*" |
21 | # tries to access google.com | ||
22 | SKIP="$SKIP httpProxy-\*" | ||
20 | 23 | ||
21 | for i in tests/*.test; do | 24 | for i in tests/*.test; do |
22 | i=$(basename $i) | 25 | i=$(basename $i) |