From: Eric Biggers <ebiggers@xxxxxxxxxx> kvm-xfstests shuts down the VM with 'poweroff -f', which with old versions of systemd's 'poweroff' command (including the version included in Debian Jessie) does not call sync(). This could cause data written to the /results filesystem to be lost. Work around this by unmounting /results before shutting down. Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx> --- kvm-xfstests/test-appliance/files/root/kvm-xfstests.boot | 1 + 1 file changed, 1 insertion(+) diff --git a/kvm-xfstests/test-appliance/files/root/kvm-xfstests.boot b/kvm-xfstests/test-appliance/files/root/kvm-xfstests.boot index 2eb3a2b..cd01ffd 100755 --- a/kvm-xfstests/test-appliance/files/root/kvm-xfstests.boot +++ b/kvm-xfstests/test-appliance/files/root/kvm-xfstests.boot @@ -92,6 +92,7 @@ then /bin/rm -f /run/gce-finalize-wait else /root/runtests.sh + umount /results poweroff -f > /dev/null 2>&1 fi else -- 2.13.0.rc0.306.g87b477812d-goog -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html