3 # Copyright (C) 2011 Red Hat Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 # Test guestfish string escapes.
23 rm -f test.output test.error test.error.old
25 ../fish/guestfish <<'EOF' 2>test.error | od > test.output
50 # Since trace and debug output also goes to stderr, we must
51 # remove it before testing.
52 mv test.error test.error.old
53 grep -v '^libguestfs: ' < test.error.old > test.error
55 if [ "$(cat test.error)" != "\
56 guestfish: invalid escape sequence in string (starting at offset 0)
57 guestfish: invalid escape sequence in string (starting at offset 0)
58 guestfish: invalid escape sequence in string (starting at offset 0)
59 guestfish: invalid escape sequence in string (starting at offset 0)
60 guestfish: invalid escape sequence in string (starting at offset 0)
61 guestfish: invalid escape sequence in string (starting at offset 0)
62 guestfish: invalid escape sequence in string (starting at offset 0)
63 guestfish: unterminated double quote
64 guestfish: unterminated double quote
65 guestfish: unterminated double quote
66 guestfish: command arguments not separated by whitespace" ]; then
67 echo "unexpected stderr from guestfish:"
69 echo "[end of stderr]"
73 if [ "$(cat test.output)" != "\
74 0000000 020012 020012 005040 005012 005015 005012 000412 000412
77 echo "unexpected stdout from guestfish:"
79 echo "[end of stdout]"
83 rm -f test.output test.error test.error.old