Skip to content

Commit 4676ca7

Browse files
committed
rq_cxl_results.sh: stop looking for "Skipped: 0" and "Timeout: 0"
Since commit 1.8.0rc1~199 , meson does not print "Skipped: 0" anymore. mesonbuild/meson@23a9a25779db5 The previous commit already replaced this with a search for "Skipped!=0" Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent 5583987 commit 4676ca7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/rq_cxl_results.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ logfile="$1"
88

99
# lines we expect to find in the serial log
1010
# if any of these are not found, this is an error
11+
# Since meson commit 1.8.0rc1~199-g23a9a25779db5, meson
12+
# never prints "Skipped: 0", "Timeout: 0", etc.
1113
find_lines_re=(
1214
"auto-running .*rq_cxl_tests.sh"
1315
"[0-9]+/[0-9]+ ndctl:.*OK.*"
1416
"Ok:[ \t]+[0-9]+"
1517
"Fail:[ \t]+0"
16-
"Skipped:[ \t]+0"
17-
"Timeout:[ \t]+0"
1818
"Done .*rq_cxl_tests.sh"
1919
)
2020

0 commit comments

Comments
 (0)