summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcltk/tcl/run-ptest
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
commit8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch)
treeefdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-devtools/tcltk/tcl/run-ptest
parentd412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff)
downloadpoky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz
The poky repository master branch is no longer being updated.
You can either: a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs b) use the new bitbake-setup You can find information about either approach in our documentation: https://docs.yoctoproject.org/ Note that "poky" the distro setting is still available in meta-yocto as before and we continue to use and maintain that. Long live Poky! Some further information on the background of this change can be found in: https://lists.openembedded.org/g/openembedded-architecture/message/2179 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/tcltk/tcl/run-ptest')
-rw-r--r--meta/recipes-devtools/tcltk/tcl/run-ptest35
1 files changed, 0 insertions, 35 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/run-ptest b/meta/recipes-devtools/tcltk/tcl/run-ptest
deleted file mode 100644
index c8acb4846f..0000000000
--- a/meta/recipes-devtools/tcltk/tcl/run-ptest
+++ /dev/null
@@ -1,35 +0,0 @@
1#!/bin/sh
2
3export TCL_LIBRARY=@libdir@/tcl/ptest/library
4export ERROR_ON_FAILURES=1
5export LANG=en-US.UTF-8
6
7# Some tests are overly strict with timings and fail on loaded systems.
8SKIP=""
9# 15321
10SKIP="$SKIP async-\* event-\*"
11# 14882
12SKIP="$SKIP cmdMZ-6.6"
13# 15081
14SKIP="$SKIP exit-1.\*"
15# 15407 15421
16SKIP="$SKIP \*io-46.1"
17# io-13.6 explicitly says it can fail on slow/loaded machines
18SKIP="$SKIP \*io-13.6"
19# 14825
20SKIP="$SKIP socket-\* socket_inet-\*"
21# These tests seem to be unreliable:
22# https://core.tcl-lang.org/tcl/tktview/3764f4e81f1483ab554c6d60f8483887bde28221
23SKIP="$SKIP http11-\*"
24# tries to access google.com
25SKIP="$SKIP httpProxy-\*"
26
27for i in tests/*.test; do
28 i=$(basename $i)
29 ./tcltest tests/all.tcl -file $i -skip "$SKIP"
30 if [ $? -eq 0 ]; then
31 echo "PASS: $i"
32 else
33 echo "FAIL: $i"
34 fi
35done