From e0263f2b3196681fa0aff21e730b3d38df225519 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 5 Sep 2023 21:53:23 +0200 Subject: [PATCH] btrfs-progs: tests: fix test case name detection scan-results.sh The test markers have changed in 4.17 so the result scanner does not print the test names (but still detects the errors). Signed-off-by: David Sterba --- tests/scan-results.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scan-results.sh b/tests/scan-results.sh index 62068a26..fcdf10b1 100755 --- a/tests/scan-results.sh +++ b/tests/scan-results.sh @@ -7,7 +7,7 @@ for i in *.txt; do last= while read line; do case "$line" in - ===\ Entering*) last="$line" ;; + ===\ START\ TEST*) last="$line" ;; *Assertion*failed*) echo "ASSERTION FAILED: $last" ;; *runtime\ error*) echo "RUNTIME ERROR (sanitizer): $last" ;; *AddressSanitizer*heap-use-after-free*) echo "RUNTIME ERROR (use after free): $last" ;;