]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
curl: fix quoting when disabling flaky tests
authorRoss Burton <ross.burton@arm.com>
Thu, 28 Mar 2024 17:41:43 +0000 (17:41 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 30 Mar 2024 22:25:17 +0000 (22:25 +0000)
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 <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-support/curl/curl/run-ptest

index acd2892f80e5c64a24f38278329b67a004812a48..3d25f3d90b954ca14a676064bce4bdeedef77492 100644 (file)
@@ -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