diff options
author | David Sterba <dsterba@suse.cz> | 2014-10-17 18:26:08 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.cz> | 2014-10-17 18:34:16 +0200 |
commit | b9a799eb897f43e860f45ff5378dfa290d768c5d (patch) | |
tree | f2941e2196472347cda1f342ac53e54a92b7bce8 /tests | |
parent | 555b7feaebc109bbc184f333779bd664adc34125 (diff) | |
download | btrfs-progs-b9a799eb897f43e860f45ff5378dfa290d768c5d.tar.gz btrfs-progs-b9a799eb897f43e860f45ff5378dfa290d768c5d.tar.bz2 btrfs-progs-b9a799eb897f43e860f45ff5378dfa290d768c5d.zip |
btrfs-progs: run fsck image tests in filename order
Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fsck-tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fsck-tests.sh b/tests/fsck-tests.sh index 3f04626e..8987d044 100644 --- a/tests/fsck-tests.sh +++ b/tests/fsck-tests.sh @@ -32,7 +32,7 @@ run_check make btrfs-corrupt-block # image (the backing file of a loop device, as a sparse file). The reason for # keeping some as tarballs of raw images is that for these cases btrfs-image # isn't able to preserve all the (bad) filesystem structure for some reason. -for i in $(find $here/tests/fsck-tests -name '*.img' -o -name '*.tar.xz') +for i in $(find $here/tests/fsck-tests -name '*.img' -o -name '*.tar.xz' | sort) do echo " [TEST] $(basename $i)" echo "testing image $i" >> $RESULT |