On Wed, Dec 16, 2020 at 8:01 PM Ian Lance Taylor <i...@golang.org> wrote: > > Thanks for the pointer to git-verify. It also fails. It looks like > when the file name contains a non-ASCII character, it comes back with > quotation marks around it. That causes the test "if > path.startswith(ignored):" in git_commit.py to fail when checking > whether the file is an ignored directory.
Looks like the quotation marks come from git itself. This is the output of git status. On branch master Your branch is up to date with 'origin/master'. Changes to be committed: (use "git restore --staged <file>..." to unstage) new file: "gcc/testsuite/go.test/test/fixedbugs/issue27836.dir/\303\204foo.go" new file: "gcc/testsuite/go.test/test/fixedbugs/issue27836.dir/\303\204main.go" new file: gcc/testsuite/go.test/test/fixedbugs/issue27836.go Ian