fixup! Win32: support long paths

This commit is contained in:
Johannes Schindelin
2017-07-21 12:27:59 +02:00
parent 45db369aee
commit ca127dae81

View File

@@ -36,13 +36,11 @@ test_expect_success 'checkout of long paths without core.longpaths fails' '
test_expect_success 'checkout of long paths with core.longpaths works' '
git config core.longpaths true &&
git checkout -f &&
(cd longpa* &&
test_path_is_file longtestfile)
test_path_is_file longpa*/longtestfile
'
test_expect_success 'update of long paths' '
(cd longpa* &&
echo frotz >> longtestfile) &&
echo frotz >>$(ls longpa*/longtestfile) &&
echo $path > expect &&
git ls-files -m > actual &&
test_cmp expect actual &&