diff options
author | Cristian Klein <cristian.klein@elastisys.com> | 2020-12-11 22:19:26 +0100 |
---|---|---|
committer | Brian C. Lane <bcl@redhat.com> | 2021-01-28 14:20:43 -0800 |
commit | 6ed9c9e82ea6cfbee93a47e82e92a90abdb82343 (patch) | |
tree | 4ae74706556320bac97cc9f0f879a7683f59d257 /tests | |
parent | 9bb4afe61426419c8bb83a25aa9822e00611c8f3 (diff) | |
download | parted-6ed9c9e82ea6cfbee93a47e82e92a90abdb82343.tar.gz |
tests: Fix t9041-undetected-in-use-16th-partition
Sometimes fails with:
```
+ mkfs.ext3 /dev/sda15
mke2fs 1.45.5 (07-Jan-2020)
/dev/sda15: Not enough space to build proposed filesystem while setting up superblock
```
Signed-off-by: Brian C. Lane <bcl@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/t9041-undetected-in-use-16th-partition.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t9041-undetected-in-use-16th-partition.sh b/tests/t9041-undetected-in-use-16th-partition.sh index a4a3020..129bf15 100644 --- a/tests/t9041-undetected-in-use-16th-partition.sh +++ b/tests/t9041-undetected-in-use-16th-partition.sh @@ -25,7 +25,7 @@ grep '^#define USE_BLKID 1' "$CONFIG_HEADER" > /dev/null || skip_ 'this system lacks a new-enough libblkid' ss=$sector_size_ -partition_sectors=256 # sectors per partition +partition_sectors=512 # sectors per partition n_partitions=17 # how many partitions to create start=2048 # start sector for the first partition gpt_slop=34 # sectors at end of disk reserved for GPT |