X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=regressions%2Ftest-qemudie-killsub.sh;h=8ee7ae826172fd99e4a9e0c12df970bb302c8d32;hb=7b192f5a672197ad67ac23501e420c674aa2f3a9;hp=9848ebf2b2dc197afe80976eac2d2cbc0ab1b447;hpb=51ecd63944bb1374ebad518d814deaa2096bc365;p=libguestfs.git diff --git a/regressions/test-qemudie-killsub.sh b/regressions/test-qemudie-killsub.sh index 9848ebf..8ee7ae8 100755 --- a/regressions/test-qemudie-killsub.sh +++ b/regressions/test-qemudie-killsub.sh @@ -1,4 +1,4 @@ -#!/bin/sh - +#!/bin/bash - # libguestfs # Copyright (C) 2009 Red Hat Inc. # @@ -14,23 +14,19 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # Test if we can handle qemu death from the kill-subprocess command. set -e -rm -f test.img - -../fish/guestfish <<'EOF' -alloc test.img 10M -run +rm -f test1.img +../fish/guestfish -N disk <<'EOF' # Kill the subprocess. kill-subprocess # XXX The following sleep should NOT be necessary. -echo "Expect an error from the next command" -sleep 1 # We should now be able to rerun the subprocess. @@ -38,4 +34,4 @@ run ping-daemon EOF -rm -f test.img +rm -f test1.img