diff options
author | Ross Burton <ross.burton@arm.com> | 2023-12-18 17:08:01 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-12-20 07:47:00 +0000 |
commit | 255e165c601bc4a32ec8bc5cf659f9c086d2d0f9 (patch) | |
tree | 88ab06ee753945ac2f918413d45d2d48cc807fcb /meta/recipes-devtools/tcltk | |
parent | 55ff0c2bf9a2609c1417d9eea6064fed10272c5a (diff) | |
download | poky-255e165c601bc4a32ec8bc5cf659f9c086d2d0f9.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: dd06c3668dbe9ec1cf9a0a84d7a6bc9851f9c662)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/tcltk')
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl/run-ptest | 4 |
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" | |||
5 | export TCL_LIBRARY=library | 5 | export 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. |
9 | SKIPPED_TESTS='cmdMZ-6.6 exit-1.* socket-* socket_inet-*' | 9 | SKIPPED_TESTS='async-* cmdMZ-6.6 event-* exit-1.* socket-* socket_inet-*' |
10 | 10 | ||
11 | for i in `ls tests/*.test | awk -F/ '{print $2}'`; do | 11 | for 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 |