diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
| commit | 8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch) | |
| tree | efdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-devtools/tcltk/tcl/run-ptest | |
| parent | d412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff) | |
| download | poky-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-ptest | 35 |
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 | |||
| 3 | export TCL_LIBRARY=@libdir@/tcl/ptest/library | ||
| 4 | export ERROR_ON_FAILURES=1 | ||
| 5 | export LANG=en-US.UTF-8 | ||
| 6 | |||
| 7 | # Some tests are overly strict with timings and fail on loaded systems. | ||
| 8 | SKIP="" | ||
| 9 | # 15321 | ||
| 10 | SKIP="$SKIP async-\* event-\*" | ||
| 11 | # 14882 | ||
| 12 | SKIP="$SKIP cmdMZ-6.6" | ||
| 13 | # 15081 | ||
| 14 | SKIP="$SKIP exit-1.\*" | ||
| 15 | # 15407 15421 | ||
| 16 | SKIP="$SKIP \*io-46.1" | ||
| 17 | # io-13.6 explicitly says it can fail on slow/loaded machines | ||
| 18 | SKIP="$SKIP \*io-13.6" | ||
| 19 | # 14825 | ||
| 20 | SKIP="$SKIP socket-\* socket_inet-\*" | ||
| 21 | # These tests seem to be unreliable: | ||
| 22 | # https://core.tcl-lang.org/tcl/tktview/3764f4e81f1483ab554c6d60f8483887bde28221 | ||
| 23 | SKIP="$SKIP http11-\*" | ||
| 24 | # tries to access google.com | ||
| 25 | SKIP="$SKIP httpProxy-\*" | ||
| 26 | |||
| 27 | for 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 | ||
| 35 | done | ||
