Fix test-guestfish-escapes regression test to work with debug/trace enabled.
authorRichard W.M. Jones <rjones@redhat.com>
Fri, 15 Jul 2011 21:09:29 +0000 (22:09 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Fri, 15 Jul 2011 21:09:29 +0000 (22:09 +0100)
If debugging or tracing is enabled, extra messages are sent to stderr
which mess with this test.  Remove the extra messages before checking
stderr.

This updates commit 617e7f6bafa7de2303c08e1715004aae3141c389.

regressions/test-guestfish-escapes.sh

index 6f4f434..3ba37d2 100755 (executable)
@@ -20,7 +20,7 @@
 
 set -e
 
-rm -f test.output test.error
+rm -f test.output test.error test.error.old
 
 ../fish/guestfish <<'EOF' 2>test.error | od > test.output
 echo ""
@@ -47,6 +47,11 @@ echo "\100"
 -echo """
 EOF
 
+# Since trace and debug output also goes to stderr, we must
+# remove it before testing.
+mv test.error test.error.old
+grep -v '^libguestfs: ' < test.error.old > test.error
+
 if [ "$(cat test.error)" != "\
 guestfish: invalid escape sequence in string (starting at offset 0)
 guestfish: invalid escape sequence in string (starting at offset 0)
@@ -75,4 +80,4 @@ if [ "$(cat test.output)" != "\
     exit 1
 fi
 
-rm -f test.output test.error
+rm -f test.output test.error test.error.old