From b6c70b3f50472e20a33320e7d76887b011f33c64 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 28 Jan 2011 22:51:36 +0000 Subject: [PATCH] Fix test-guestfish-a.sh regression test for new trace format. This fixes commit 1d999540bddd7aea7c2d0fef8b15223d4acc645f. --- regressions/test-guestfish-a.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/regressions/test-guestfish-a.sh b/regressions/test-guestfish-a.sh index 887d1aa..064b268 100755 --- a/regressions/test-guestfish-a.sh +++ b/regressions/test-guestfish-a.sh @@ -24,22 +24,22 @@ rm -f test.out ../fish/guestfish -x -a /dev/null test.out 2>&1 -! grep -sq '^add_drive.*format' test.out +! grep -sq 'add_drive.*format' test.out ../fish/guestfish -x --format=qcow2 -a /dev/null test.out 2>&1 -grep -sq '^add_drive.*format:qcow2' test.out +grep -sq 'add_drive.*format:qcow2' test.out ../fish/guestfish -x --ro --format=qcow2 -a /dev/null test.out 2>&1 -grep -sq '^add_drive.*readonly:true.*format:qcow2' test.out +grep -sq 'add_drive.*readonly:true.*format:qcow2' test.out ../fish/guestfish -x --format -a /dev/null test.out 2>&1 -! grep -sq '^add_drive.*format' test.out +! grep -sq 'add_drive.*format' test.out ../fish/guestfish -x -a /dev/null --format=qcow2 test.out 2>&1 -! grep -sq '^add_drive.*format' test.out +! grep -sq 'add_drive.*format' test.out rm -f test.out -- 1.8.3.1