]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t4014: make output-directory tests self-contained
authorBert Wesarg <bert.wesarg@googlemail.com>
Mon, 21 Oct 2019 13:23:42 +0000 (15:23 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 23 Oct 2019 02:08:58 +0000 (11:08 +0900)
As noted by Gábor in [1], the new tests in edefc31873 ("format-patch:
create leading components of output directory", 2019-10-11) cannot be
run independently. Fix this.

[1] https://public-inbox.org/git/20191011144650.GM29845@szeder.dev/

Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4014-format-patch.sh

index c455181e1dd763a3c35fb79b44a55d3bd76f23be..93a1656f290d2420e64f3854d87ee78a5a416ac0 100755 (executable)
@@ -1615,17 +1615,20 @@ test_expect_success 'format-patch -o with no leading directories' '
 '
 
 test_expect_success 'format-patch -o with leading existing directories' '
-       git format-patch -o patches/side master..side &&
+       rm -rf existing-dir &&
+       mkdir existing-dir &&
+       git format-patch -o existing-dir/patches master..side &&
        count=$(git rev-list --count master..side) &&
-       ls patches/side >list &&
+       ls existing-dir/patches >list &&
        test_line_count = $count list
 '
 
 test_expect_success 'format-patch -o with leading non-existing directories' '
-       rm -fr patches &&
-       git format-patch -o patches/side master..side &&
+       rm -rf non-existing-dir &&
+       git format-patch -o non-existing-dir/patches master..side &&
        count=$(git rev-list --count master..side) &&
-       ls patches/side >list &&
+       test_path_is_dir non-existing-dir &&
+       ls non-existing-dir/patches >list &&
        test_line_count = $count list
 '