From 126ab52086edf4ba35c0c0d3afa783e60fea3ce5 Mon Sep 17 00:00:00 2001 From: Jeff Hostetler Date: Wed, 29 Sep 2021 15:14:28 -0400 Subject: [PATCH] fixup! t7527: test builtin FSMonitor watching repos with unicode paths This reverts commit 0f46db7c01aff55b566299bad087be7cf13e1947. Signed-off-by: Jeff Hostetler --- t/t7527-builtin-fsmonitor.sh | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/t/t7527-builtin-fsmonitor.sh b/t/t7527-builtin-fsmonitor.sh index f10a33dde8..85e249fda4 100755 --- a/t/t7527-builtin-fsmonitor.sh +++ b/t/t7527-builtin-fsmonitor.sh @@ -690,27 +690,4 @@ do done done -# Test Unicode UTF-8 characters in the pathname of the working -# directory. Use of "*A()" routines rather than "*W()" routines -# on Windows can sometimes lead to odd failures. -# -u1=$(printf "u_c3_a6__\xC3\xA6") -u2=$(printf "u_e2_99_ab__\xE2\x99\xAB") -u_values="$u1 $u2" -for u in $u_values -do - test_expect_success "Unicode path: $u" ' - test_when_finished "stop_daemon_delete_repo $u" && - - git init "$u" && - echo 1 >"$u"/file1 && - git -C "$u" add file1 && - git -C "$u" config core.useBuiltinFSMonitor true && - - start_daemon "$u" && - git -C "$u" status >actual && - grep "new file: file1" actual - ' -done - test_done