From 382ace6db6c170aa8ec43adfeb3dc62bf4821916 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Mon, 15 Feb 2021 12:03:52 +0100 Subject: [PATCH] Add system test name to "file not removed" info (cherry picked from commit 10bf725ee2500d5469ead305b6684b150267ff4d) --- bin/tests/system/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/tests/system/run.sh b/bin/tests/system/run.sh index 8e2e97c94a..7124a6cf32 100755 --- a/bin/tests/system/run.sh +++ b/bin/tests/system/run.sh @@ -313,9 +313,9 @@ else ( cd $systest && $SHELL clean.sh "$@" ) if test -d ../../../.git; then git status -su --ignored "${systest}" 2>/dev/null | \ - sed -n -e 's|^?? \(.*\)|I:file \1 not removed|p' \ - -e 's|^!! \(.*/named.run\)$|I:file \1 not removed|p' \ - -e 's|^!! \(.*/named.memstats\)$|I:file \1 not removed|p' + sed -n -e 's|^?? \(.*\)|I:'${systest}':file \1 not removed|p' \ + -e 's|^!! \(.*/named.run\)$|I:'${systest}':file \1 not removed|p' \ + -e 's|^!! \(.*/named.memstats\)$|I:'${systest}':file \1 not removed|p' fi fi fi