summaryrefslogtreecommitdiffstats
path: root/tests/ts
diff options
context:
space:
mode:
authorKarel Zak2017-11-14 15:40:09 +0100
committerKarel Zak2017-11-14 15:40:09 +0100
commit7ee921edbeaf04845c87b0d9c280f32e98118e85 (patch)
treef1226d2f68ea371f95326dc0e8c009e708341d64 /tests/ts
parentlibfdisk: (gpt) move backup header after device resize (diff)
downloadkernel-qcow2-util-linux-7ee921edbeaf04845c87b0d9c280f32e98118e85.tar.gz
kernel-qcow2-util-linux-7ee921edbeaf04845c87b0d9c280f32e98118e85.tar.xz
kernel-qcow2-util-linux-7ee921edbeaf04845c87b0d9c280f32e98118e85.zip
tests: GPT device resize test
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'tests/ts')
-rwxr-xr-xtests/ts/fdisk/gpt-resize63
1 files changed, 63 insertions, 0 deletions
diff --git a/tests/ts/fdisk/gpt-resize b/tests/ts/fdisk/gpt-resize
new file mode 100755
index 000000000..b8319817d
--- /dev/null
+++ b/tests/ts/fdisk/gpt-resize
@@ -0,0 +1,63 @@
+#!/bin/bash
+
+#
+# This file is part of util-linux.
+#
+# This file is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This file is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+
+#
+# Test GPT Alternative-LBA and backup header update after device resize.
+#
+
+TS_TOPDIR="${0%/*}/../.."
+TS_DESC="gpt-resize"
+
+. $TS_TOPDIR/functions.sh
+ts_init "$*"
+
+ts_skip_nonroot
+
+ts_check_test_command "$TS_CMD_FDISK"
+ts_check_test_command "$TS_CMD_SFDISK"
+ts_check_prog "dd"
+
+ts_check_losetup
+
+ts_device_init 10
+DEVICE=$TS_LODEV
+
+# create GPT with one partition
+echo ",," | $TS_CMD_SFDISK --no-reread --no-tell-kernel --label gpt $DEVICE >> $TS_OUTPUT 2>&1
+udevadm settle
+
+# enlarge the image
+IMAGE=$($TS_CMD_LOSETUP --output BACK-FILE --noheadings $DEVICE)
+dd if=/dev/zero of=${IMAGE} bs=1MiB count=10 conv=notrunc oflag=append &> /dev/null
+udevadm settle
+
+# update device size
+$TS_CMD_LOSETUP --set-capacity $DEVICE
+udevadm settle
+
+echo -e "\n\n----- fixing after resize: -----\n\n" >> $TS_OUTPUT
+
+# create another GPT partition on new free space (all default)
+echo -e 'n\n\n\n\nw\n' | $TS_CMD_FDISK $DEVICE >> $TS_OUTPUT 2>&1
+udevadm settle
+
+
+echo -e "\n\n----- list result: -----\n\n" >> $TS_OUTPUT
+
+$TS_CMD_FDISK --list $DEVICE 2>&1 >> $TS_OUTPUT
+
+ts_fdisk_clean $DEVICE
+ts_finalize