diff mbox series

[wrynose,45/55] tcl: disable the timer tests in run-ptest

Message ID 0c4b512c104a798a6978e2701fb4e2546f26ca9f.1783289522.git.yoann.congal@smile.fr
State New
Headers show
Series [wrynose,01/55] bluez5: fix set volume failure | expand

Commit Message

Yoann Congal July 5, 2026, 10:41 p.m. UTC
From: Ross Burton <ross.burton@arm.com>

We've seen the timer tests fail on the autobuilder, presumably because
any tests that are exercising the timers will be unstable on a loaded
system.

[ YOCTO #16324 ]

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 73bdad5ed6906edb92f96baa70adc772f9dc18de)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
---
 meta/recipes-devtools/tcltk/tcl/run-ptest   | 2 ++
 meta/recipes-devtools/tcltk8/tcl8/run-ptest | 2 ++
 2 files changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/meta/recipes-devtools/tcltk/tcl/run-ptest b/meta/recipes-devtools/tcltk/tcl/run-ptest
index 46f6cdca333..c01a7a1da28 100644
--- a/meta/recipes-devtools/tcltk/tcl/run-ptest
+++ b/meta/recipes-devtools/tcltk/tcl/run-ptest
@@ -34,6 +34,8 @@  SKIP="$SKIP http11-\*"
 SKIP="$SKIP httpProxy-\*"
 # These tests appear to be load-sensitive (16214)
 SKIP="$SKIP mutex-condition-\*"
+# Timer-related tests are going to be fragile (16324)
+SKIP="$SKIP timer-\*"
 
 # Run all tests in tests/*.test unless tests are specified as arguments
 TESTS=${*:-tests/*.test}
diff --git a/meta/recipes-devtools/tcltk8/tcl8/run-ptest b/meta/recipes-devtools/tcltk8/tcl8/run-ptest
index 86b74a4177d..f4d0e90c0f0 100644
--- a/meta/recipes-devtools/tcltk8/tcl8/run-ptest
+++ b/meta/recipes-devtools/tcltk8/tcl8/run-ptest
@@ -32,6 +32,8 @@  SKIP="$SKIP socket-\* socket_inet\* socket_inet6\*"
 SKIP="$SKIP http11-\*"
 # tries to access google.com
 SKIP="$SKIP httpProxy-\*"
+# Timer-related tests are going to be fragile (16324)
+SKIP="$SKIP timer-\*"
 
 # Run all tests in tests/*.test unless tests are specified as arguments
 TESTS=${*:-tests/*.test}