From 3837269d2831d9cf245dd163e5d0619e483ae4aa Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Wed, 4 May 2022 10:24:44 -0400 Subject: [PATCH] jjb: binutils-gdb: record not found expected failures to a file This makes it more readable than trying to find them in the log. Change-Id: I36c3c32b5360dad0670e9c2ba372d6d77456e998 --- scripts/binutils-gdb/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/binutils-gdb/build.sh b/scripts/binutils-gdb/build.sh index 18a749f..693632d 100755 --- a/scripts/binutils-gdb/build.sh +++ b/scripts/binutils-gdb/build.sh @@ -705,7 +705,7 @@ while read line; do if ! grep --silent --fixed-strings "$line" "${WORKSPACE}/results/gdb.sum"; then echo "$line" fi -done < "$known_failures_file" +done < "$known_failures_file" > "${WORKSPACE}/results/known-failures-not-found.sum" # Convert results to JUnit format. failed_tests=0 -- 2.34.1