X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=regressions%2Ftest-qemudie-synch.sh;h=697c83bd0c9857a2c63a4ef2a4b47ef4cb1ac06a;hb=9b102aae65449a8d321e8cf44a3993af558291db;hp=5932fef21906dc338f352b6400bc426dd7b096a1;hpb=4f4880303693bc2e55ce431e87302098654b7f03;p=libguestfs.git diff --git a/regressions/test-qemudie-synch.sh b/regressions/test-qemudie-synch.sh index 5932fef..697c83b 100755 --- a/regressions/test-qemudie-synch.sh +++ b/regressions/test-qemudie-synch.sh @@ -14,24 +14,20 @@ # # 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 synchronously. set -e -rm -f test.pid test.img - -../fish/guestfish <<'EOF' -alloc test.img 10M -run +rm -f test.pid test1.img +../fish/guestfish -N disk <<'EOF' # Kill subprocess. pid | cat > test.pid ! kill $(cat test.pid) ; sleep 2 # 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. @@ -39,4 +35,4 @@ run ping-daemon EOF -rm -f test.pid test.img +rm -f test.pid test1.img