X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=test%2Ftest-functions;fp=test%2Ftest-functions;h=8e300b10ef6754c6d277c8c17070bac95bca2258;hb=b8667ee4162cd2510363602b417cecede9fd2cca;hp=a9446e514a81f3d34df0b9ba521b430d5a610e6a;hpb=262d10e6bd8e4a0a6a0967fbb5f89a5b989779ac;p=elogind.git diff --git a/test/test-functions b/test/test-functions index a9446e514..8e300b10e 100644 --- a/test/test-functions +++ b/test/test-functions @@ -126,12 +126,12 @@ install_missing_libraries() { create_empty_image() { rm -f "$TESTDIR/rootdisk.img" # Create the blank file to use as a root filesystem - dd if=/dev/null of="$TESTDIR/rootdisk.img" bs=1M seek=200 + dd if=/dev/null of="$TESTDIR/rootdisk.img" bs=1M seek=300 LOOPDEV=$(losetup --show -P -f $TESTDIR/rootdisk.img) [ -b "$LOOPDEV" ] || return 1 echo "LOOPDEV=$LOOPDEV" >> $STATEFILE - sfdisk -C 6400 -H 2 -S 32 -L "$LOOPDEV" <