mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-12 01:16:13 +00:00
dcb174ce2e
Signed-off-by: David Sterba <dsterba@suse.com>
16 lines
357 B
Bash
Executable File
16 lines
357 B
Bash
Executable File
#!/bin/bash
|
|
# test convert-thread-conflict
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_prereq btrfs-convert
|
|
|
|
mkfs.ext4 -V &>/dev/null || _not_run "mkfs.ext4 not found"
|
|
prepare_test_dev
|
|
|
|
for ((i = 0; i < 20; i++)); do
|
|
echo "loop $i" >> "$RESULTS"
|
|
mkfs.ext4 -F "$TEST_DEV" &>>"$RESULTS" || _not_run "mkfs.ext4 failed"
|
|
run_check "$TOP/btrfs-convert" "$TEST_DEV"
|
|
done
|