16 lines
351 B
Bash
Executable File
16 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
# test convert-thread-conflict
|
|
|
|
source "$TEST_TOP/common" || exit
|
|
|
|
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
|
|
_log "loop $i"
|
|
mkfs.ext4 -F "$TEST_DEV" &>>"$RESULTS" || _not_run "mkfs.ext4 failed"
|
|
run_check "$TOP/btrfs-convert" "$TEST_DEV"
|
|
done
|