summaryrefslogtreecommitdiff
path: root/tests/convert-tests.sh
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2016-06-03 15:37:25 +0200
committerDavid Sterba <dsterba@suse.com>2016-06-03 16:53:27 +0200
commitcf8cc8ea45b743d48593e853aeda843dca6d9b66 (patch)
tree0e5371d9c2071c05a06e425621641adef62e041e /tests/convert-tests.sh
parent79b0946f033f11e45e677338a8d200477dfb15e7 (diff)
btrfs-progs: tests: convert: separate ext3 tests
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'tests/convert-tests.sh')
-rwxr-xr-xtests/convert-tests.sh5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/convert-tests.sh b/tests/convert-tests.sh
index 196df608..ad0918cb 100755
--- a/tests/convert-tests.sh
+++ b/tests/convert-tests.sh
@@ -49,15 +49,10 @@ if ! [ -z "$TEST" ]; then
fi
for feature in '' 'extref' 'skinny-metadata' 'no-holes'; do
- convert_test "$feature" "ext3 4k nodesize" 4096 mke2fs -j -b 4096
convert_test "$feature" "ext4 4k nodesize" 4096 mke2fs -t ext4 -b 4096
- convert_test "$feature" "ext3 8k nodesize" 8192 mke2fs -j -b 4096
convert_test "$feature" "ext4 8k nodesize" 8192 mke2fs -t ext4 -b 4096
- convert_test "$feature" "ext3 16k nodesize" 16384 mke2fs -j -b 4096
convert_test "$feature" "ext4 16k nodesize" 16384 mke2fs -t ext4 -b 4096
- convert_test "$feature" "ext3 32k nodesize" 32768 mke2fs -j -b 4096
convert_test "$feature" "ext4 32k nodesize" 32768 mke2fs -t ext4 -b 4096
- convert_test "$feature" "ext3 64k nodesize" 65536 mke2fs -j -b 4096
convert_test "$feature" "ext4 64k nodesize" 65536 mke2fs -t ext4 -b 4096
done