]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add system test name to "file not removed" info
authorMichal Nowak <mnowak@isc.org>
Mon, 15 Feb 2021 11:03:52 +0000 (12:03 +0100)
committerMichal Nowak <mnowak@isc.org>
Wed, 17 Feb 2021 15:35:21 +0000 (16:35 +0100)
bin/tests/system/run.sh.in

index 99c93da1cacb815fa5e46c9bf5941e6be8c72a2c..819d1650fe4375bedff81bd61e547da59e254d6c 100644 (file)
@@ -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
 }