From 1de113eb0c14672764defefbcc6643b17d9baac7 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 16 Jul 2024 10:17:10 -1000 Subject: [PATCH] btrfs-progs: tests: fix filename typo in fsck/052 compex -> complex Codespell discovered a typo in tests that's actually a bug in filename that is supposed to be created and written to. === Do not change lines below === { "chain": [], "cmd": "git-sedi compex complex", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ Pull-request: #846 Author: Yaroslav Halchenko Signed-off-by: David Sterba --- tests/fsck-tests/052-init-csum-tree/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fsck-tests/052-init-csum-tree/test.sh b/tests/fsck-tests/052-init-csum-tree/test.sh index 0f0c5fcf5b..7419355aa5 100755 --- a/tests/fsck-tests/052-init-csum-tree/test.sh +++ b/tests/fsck-tests/052-init-csum-tree/test.sh @@ -43,7 +43,7 @@ run_check $SUDO_HELPER fallocate -p -o 4096 -l 4096 "$TEST_MNT/regular_with_hole # And the most complex one, preallocated, written, then hole run_check $SUDO_HELPER fallocate -l 8192 "$TEST_MNT/complex" -run_check $SUDO_HELPER dd if=/dev/urandom of="$TEST_MNT/compex" \ +run_check $SUDO_HELPER dd if=/dev/urandom of="$TEST_MNT/complex" \ bs=4k count=1 conv=notrunc status=noxfer > /dev/null 2>&1 sync run_check $SUDO_HELPER fallocate -p -l 4096 "$TEST_MNT/regular_with_holes"