mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-20 03:36:50 +00:00
Use TEST_TOP as base for tests to reference any files, this will be used for git and external testsuite. INTERNAL_BIN is needed for referencing binaries that could reside in different paths in git vs external testsuite. Signed-off-by: Gu Jinxiang <gujx@cn.fujitsu.com> [ add quotes around sourced files, update changelog ] Signed-off-by: David Sterba <dsterba@suse.com>
16 lines
350 B
Bash
Executable File
16 lines
350 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
|