From: Ross Burton Date: Thu, 28 Mar 2024 17:41:43 +0000 (+0000) Subject: curl: fix quoting when disabling flaky tests X-Git-Tag: 2024-04-scarthgap~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97afe73e6fbd4a116ac3bf2178634d7636195e5a;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git curl: fix quoting when disabling flaky tests The list of test labels to disable shouldn't be quoted, and this meant that tests were running when they should not. [ YOCTO #15268 ] Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/curl/curl/run-ptest b/meta/recipes-support/curl/curl/run-ptest index acd2892f80e..3d25f3d90b9 100644 --- a/meta/recipes-support/curl/curl/run-ptest +++ b/meta/recipes-support/curl/curl/run-ptest @@ -8,4 +8,4 @@ cd tests # Run four tests in parallel # Print log output on failure # Don't run the flaky or timing dependent tests -./runtests.pl -a -n -am -j4 -p '!flaky !timing-dependent' +./runtests.pl -a -n -am -j4 -p !flaky !timing-dependent