diff mbox series

curl: fix quoting when disabling flaky tests

Message ID 20240328174143.2712990-1-ross.burton@arm.com
State Accepted, archived
Commit 97afe73e6fbd4a116ac3bf2178634d7636195e5a
Headers show
Series curl: fix quoting when disabling flaky tests | expand

Commit Message

Ross Burton March 28, 2024, 5:41 p.m. UTC
From: Ross Burton <ross.burton@arm.com>

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>
---
 meta/recipes-support/curl/curl/run-ptest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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