mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
4280b129e7
---- Result was:
{abcdefghj
01234} 0
---- Result should have been (exact matching):
{abcdefghj
} 1 01234 0
==== io-13.6 FAILED
This test is documented as failing on slow machines, so just skip it.
[ YOCTO #15407 ]
(From OE-Core rev: 8b608a5f40c6c40d0fd1091c8943eae61adc1df0)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f69183586655294c9aed6687cebe57767c2f3eb8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
32 lines
673 B
Bash
32 lines
673 B
Bash
#!/bin/sh
|
|
|
|
# clock.test needs a timezone to be set
|
|
export TZ="Europe/London"
|
|
export TCL_LIBRARY=library
|
|
export ERROR_ON_FAILURES=1
|
|
|
|
# Some tests are overly strict with timings and fail on loaded systems.
|
|
SKIP=""
|
|
# 15321
|
|
SKIP="$SKIP async-\* event-\*"
|
|
# 14882
|
|
SKIP="$SKIP cmdMZ-6.6"
|
|
# 15081
|
|
SKIP="$SKIP exit-1.\*"
|
|
# 15407 15421
|
|
SKIP="$SKIP \*io-46.1"
|
|
# io-13.6 explicitly says it can fail on slow/loaded machines
|
|
SKIP="$SKIP io-13.6"
|
|
# 14825
|
|
SKIP="$SKIP socket-\* socket_inet-\*"
|
|
|
|
for i in tests/*.test; do
|
|
i=$(basename $i)
|
|
./tcltest tests/all.tcl -file $i -skip "$SKIP"
|
|
if [ $? -eq 0 ]; then
|
|
echo "PASS: $i"
|
|
else
|
|
echo "FAIL: $i"
|
|
fi
|
|
done
|