summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-12-18 17:08:01 +0000
committerSteve Sakoman <steve@sakoman.com>2024-04-19 04:50:39 -0700
commit3c2f8099332c1c249db79261d7b8e6257b459781 (patch)
tree103dcc65b17c1e1e381e4d824d7853c4d6648fba
parentab958d6589ab5c98efaa1ab04636798b6b896f62 (diff)
downloadpoky-3c2f8099332c1c249db79261d7b8e6257b459781.tar.gz
tcl: skip async and event tests in run-ptest
These test suites are full of timing-sensitive test cases, so skip them too. [ YOCTO #15321 ] (From OE-Core rev: f94c74cee8b2650dd3211a49dc7e88bf60d2e6a7) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit dd06c3668dbe9ec1cf9a0a84d7a6bc9851f9c662) Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/recipes-devtools/tcltk/tcl/run-ptest4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/run-ptest b/meta/recipes-devtools/tcltk/tcl/run-ptest
index 51e1e4aa7b..87e025fce1 100644
--- a/meta/recipes-devtools/tcltk/tcl/run-ptest
+++ b/meta/recipes-devtools/tcltk/tcl/run-ptest
@@ -5,8 +5,8 @@ export TZ="Europe/London"
5export TCL_LIBRARY=library 5export TCL_LIBRARY=library
6 6
7# 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.
8# See bugs #14825 #14882 #15081. 8# See bugs #14825 #14882 #15081 #15321.
9SKIPPED_TESTS='cmdMZ-6.6 exit-1.* socket-* socket_inet-*' 9SKIPPED_TESTS='async-* cmdMZ-6.6 event-* exit-1.* socket-* socket_inet-*'
10 10
11for i in `ls tests/*.test | awk -F/ '{print $2}'`; do 11for i in `ls tests/*.test | awk -F/ '{print $2}'`; do
12 ./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