rev-parse(1): logically group options
[gitweb.git] / t / t3010-ls-files-killed-modified.sh
index 2d0ff2d5a18828bc3018a8bf2edee8198c09a25f..262e61744563b2ce4eb14df0e54f71d56c157007 100755 (executable)
@@ -39,12 +39,7 @@ modified without reporting path9 and path10.
 
 test_expect_success 'git update-index --add to add various paths.' '
        date >path0 &&
-       if test_have_prereq SYMLINKS
-       then
-               ln -s xyzzy path1
-       else
-               date > path1
-       fi &&
+       test_ln_s_add xyzzy path1 &&
        mkdir path2 path3 &&
        date >path2/file2 &&
        date >path3/file3 &&
@@ -52,7 +47,7 @@ test_expect_success 'git update-index --add to add various paths.' '
        date >path8 &&
        : >path9 &&
        date >path10 &&
-       git update-index --add -- path0 path1 path?/file? path7 path8 path9 path10 &&
+       git update-index --add -- path0 path?/file? path7 path8 path9 path10 &&
        rm -fr path?    # leave path10 alone
 '