From: Michal Nowak Date: Mon, 15 Feb 2021 11:03:52 +0000 (+0100) Subject: Add system test name to "file not removed" info X-Git-Tag: v9.17.11~44^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=10bf725ee2500d5469ead305b6684b150267ff4d;p=thirdparty%2Fbind9.git Add system test name to "file not removed" info --- diff --git a/bin/tests/system/run.sh.in b/bin/tests/system/run.sh.in index 99c93da1cac..819d1650fe4 100644 --- a/bin/tests/system/run.sh.in +++ b/bin/tests/system/run.sh.in @@ -295,9 +295,9 @@ fi print_outstanding_files() { if test -d ${srcdir}/../../../.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 }