Files
poky/meta/recipes-devtools/tcltk/tcl/run-ptest
Ross Burton 7bf1fce6da tcl: skip http11 tests
These tests are either unstable under load, or just unstable.

A ticket has been filed upstream[1] but for now disable them.

[ YOCTO #15467 ]

[1] https://core.tcl-lang.org/tcl/tktview/3764f4e81f1483ab554c6d60f8483887bde28221

(From OE-Core rev: e6158f316828afaf167b6e67c3b6256888b33634)

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8f1538518fd3a3017189b38437691ce358a2566a)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-04-10 11:53:18 +01:00

656 B

#!/bin/sh

clock.test needs a timezone to be set

export TZ="Europe/London" export TCL_LIBRARY=library

Some tests are overly strict with timings and fail on loaded systems.

See bugs #14825 #14882 #15081 #15321 #15467.

SKIPPED_TESTS='async-* cmdMZ-6.6 event-* exit-1.* socket-* socket_inet-* http11-*'

for i in ls tests/*.test | awk -F/ '{print $2}'; do ./tcltest tests/all.tcl -file $i -skip "$SKIPPED_TESTS" >$i.log 2>&1 grep -q -F -e "Files with failing tests:" -e "Test files exiting with errors:" $i.log if [ $? -eq 0 ]; then echo "FAIL: $i" cat $i.log else echo "PASS: $i" fi rm -f $i.log done