guestfish: Redirect stdout when executing remote commands
[libguestfs.git] / regressions / test-remote.sh
index f3c14b4..783dd6e 100755 (executable)
@@ -29,6 +29,18 @@ eval `../fish/guestfish --listen`
 ../fish/guestfish --remote sfdiskM /dev/sda ,
 ../fish/guestfish --remote mkfs ext2 /dev/sda1
 ../fish/guestfish --remote mount /dev/sda1 /
+
+# Failure of the above commands will cause the guestfish listener to exit.
+# Incorrect return from echo_daemon will not, so need to ensure the listener
+# exits in any case, while still reporting an error.
+error=0
+echo=$(../fish/guestfish --remote echo_daemon "This is a test")
+if [ "$echo" != "This is a test" ]; then
+    error=1;
+fi
+
 ../fish/guestfish --remote exit
 
 rm -f test.img
+
+exit $error