From 2ae7c2b9726a7a54722f62750a0b5da671376055 Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Sat, 17 Aug 2024 21:44:52 +0200 Subject: [PATCH] tests: set msize=512000 option for 9pfs From https://salsa.debian.org/ci-team/autopkgtest/-/merge_requests/418 We do not transfer large file, but still. --- tests/test-vm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-vm.sh b/tests/test-vm.sh index 6b3d7d6..96bcb9e 100755 --- a/tests/test-vm.sh +++ b/tests/test-vm.sh @@ -121,7 +121,7 @@ RC=0 --port "$serial_port" \ --hostname "$VM_HOSTNAME" \ --poweroff \ - "mount -t 9p -o trans=virtio,version=9p2000.L,rw $MOUNT_TAG /mnt && cd /mnt && ./testrunner" || RC=$? + "mount -t 9p -o trans=virtio,version=9p2000.L,msize=512000,rw $MOUNT_TAG /mnt && cd /mnt && ./testrunner" || RC=$? if [ ! -d results ] || [ ! -f ./results/goss.tap ] || [ ! -f ./results/goss.exitcode ]; then echo "Running tests inside VM failed for unknown reason" >&2