mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-15 19:05:50 +00:00
d4eb5a77d7
As we don't know what's the TEST_DEV like, use the explicit mkfs limit. Signed-off-by: David Sterba <dsterba@suse.com>
12 lines
205 B
Bash
Executable File
12 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Mixed mode needs equal sectorsize and nodesize
|
|
|
|
source $TOP/tests/common
|
|
|
|
check_prereq mkfs.btrfs
|
|
|
|
run_mayfail "$TOP/mkfs.btrfs" -b 512M -f -M -s 4096 -n 16384 "$TEST_DEV" && _fail
|
|
|
|
exit 0
|