Patrick Steinhardt <ps@xxxxxx> writes: > diff --git a/t/t7300-clean.sh b/t/t7300-clean.sh > index 0aae0dee67..12ab25296b 100755 > --- a/t/t7300-clean.sh > +++ b/t/t7300-clean.sh > @@ -747,7 +747,7 @@ test_expect_success MINGW 'handle clean & core.longpaths = false nicely' ' > test_must_fail git clean -xdf 2>.git/err && > # grepping for a strerror string is unportable but it is OK here with > # MINGW prereq I find it amusing that this talks about limiting the test to MINGW yet we need to accept two variants ;-) > - test_grep "too long" .git/err > + test_grep -e "too long" -e "No such file or directory" .git/err > ' The solution looks obviously good enough. Thanks.