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-01-04 04:09:44 -1000
commit64ba80468a82eb99ba38b1145ddb8a35a9411de3 (patch)
tree19c040b0a88718b4a6c7a74961a070f9bdf4fd85
parent34a0aa10a581168a6b88fafa523823ee66f6c1de (diff)
downloadpoky-64ba80468a82eb99ba38b1145ddb8a35a9411de3.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: e6a2793afdf4d48479e5f369a0446db51a681117) 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