summaryrefslogtreecommitdiff
path: root/system/parted/tests-call-name-correctly.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2025-06-07 15:23:14 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2025-07-13 00:14:09 -0500
commit5279ffb4f5a58d48b6b09a42d60e58dc0ce135b5 (patch)
tree1cb943be1da41bfce9ee7ab61749a61a2e22d4a9 /system/parted/tests-call-name-correctly.patch
parent121d1b3b6768a7f2422e7dc7a11404c85612ee27 (diff)
downloadpackages-5279ffb4f5a58d48b6b09a42d60e58dc0ce135b5.tar.gz
packages-5279ffb4f5a58d48b6b09a42d60e58dc0ce135b5.tar.bz2
packages-5279ffb4f5a58d48b6b09a42d60e58dc0ce135b5.tar.xz
packages-5279ffb4f5a58d48b6b09a42d60e58dc0ce135b5.zip
system/parted: Update to 3.6
A few bugs fixed, Modern C porting completed.
Diffstat (limited to 'system/parted/tests-call-name-correctly.patch')
-rw-r--r--system/parted/tests-call-name-correctly.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/parted/tests-call-name-correctly.patch b/system/parted/tests-call-name-correctly.patch
index 27a6287e8..30645842d 100644
--- a/system/parted/tests-call-name-correctly.patch
+++ b/system/parted/tests-call-name-correctly.patch
@@ -17,8 +17,8 @@ mkpart syntax recently changed, tests do not reflect that.
dd if=/dev/null of=$dev bs=1M seek=$n_mbs || fail=1
# create 1st partition
--parted --align=none -s $dev mklabel gpt mkpart p1 1MiB 2MiB > err 2>&1 || fail=1
-+parted --align=none -s $dev mklabel gpt mkpart primary 1MiB 2MiB name 1 p1 > err 2>&1 || fail=1
+-parted --align=none -s $dev mklabel gpt mkpart p1 1MiB 2048KiB > err 2>&1 || fail=1
++parted --align=none -s $dev mklabel gpt mkpart primary 1MiB 2048KiB name 1 p1 > err 2>&1 || fail=1
compare /dev/null err || fail=1 # expect no output
#parted -m -s $dev u s p > exp || fail=1