diff options
author | Ross Burton <ross.burton@arm.com> | 2024-03-28 17:41:43 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-03-30 22:25:43 +0000 |
commit | d5d10db429917026b331279288bab9af31447316 (patch) | |
tree | a6719122059fcfcc94570644c3ae17d512307efb /meta/recipes-support/curl | |
parent | 7d2ea09deb9357385902f1c8ace508af03e8b544 (diff) | |
download | poky-d5d10db429917026b331279288bab9af31447316.tar.gz |
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 ]
(From OE-Core rev: 97afe73e6fbd4a116ac3bf2178634d7636195e5a)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/curl')
-rw-r--r-- | meta/recipes-support/curl/curl/run-ptest | 2 |
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 acd2892f80..3d25f3d90b 100644 --- a/meta/recipes-support/curl/curl/run-ptest +++ b/meta/recipes-support/curl/curl/run-ptest | |||
@@ -8,4 +8,4 @@ cd tests | |||
8 | # Run four tests in parallel | 8 | # Run four tests in parallel |
9 | # Print log output on failure | 9 | # Print log output on failure |
10 | # Don't run the flaky or timing dependent tests | 10 | # Don't run the flaky or timing dependent tests |
11 | ./runtests.pl -a -n -am -j4 -p '!flaky !timing-dependent' | 11 | ./runtests.pl -a -n -am -j4 -p !flaky !timing-dependent |