summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Joslyn <robert.joslyn@redrectangle.org>2023-09-27 18:56:06 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-29 23:11:59 +0100
commit2be637e323dacc4888596a57471198ca5b703cf2 (patch)
tree700a1c3ab293c539755e364471d2a61a47b2e5cd
parent3b46d6a41a466e9af7d72b414bed9115f6ae1ad0 (diff)
downloadpoky-2be637e323dacc4888596a57471198ca5b703cf2.tar.gz
curl: Skip tests marked flaky
Some tests can fail intermittently and upstream has marked these as flaky so they can easily be skipped. At present there are 12 tests marked flaky with 10 of them running in the default recipe configuration. Skip them to avoid the failures. (From OE-Core rev: 34f37de80928bb23a594268b0e996beb575ca51b) Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-support/curl/curl/run-ptest2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/curl/curl/run-ptest b/meta/recipes-support/curl/curl/run-ptest
index 95af2bd7b3..8f9c20f34d 100644
--- a/meta/recipes-support/curl/curl/run-ptest
+++ b/meta/recipes-support/curl/curl/run-ptest
@@ -1,6 +1,6 @@
1#!/bin/sh 1#!/bin/sh
2cd tests 2cd tests
3{ ./runtests.pl -a -n -s -j4 || echo "FAIL: curl" ; } | sed \ 3{ ./runtests.pl -a -n -s -j4 !flaky || echo "FAIL: curl" ; } | sed \
4 -e 's|\([^ ]* *\) \([^ ]* *\)...OK|PASS: \1 \2|' \ 4 -e 's|\([^ ]* *\) \([^ ]* *\)...OK|PASS: \1 \2|' \
5 -e 's|\([^ ]* *\) \([^ ]* *\)...FAILED|FAIL: \1 \2|' \ 5 -e 's|\([^ ]* *\) \([^ ]* *\)...FAILED|FAIL: \1 \2|' \
6 -e 's/Warning: test[0-9]\+ not present in tests\/data\/Makefile.inc//' 6 -e 's/Warning: test[0-9]\+ not present in tests\/data\/Makefile.inc//'