Am 13.11.2012 11:06, schrieb Nguyễn Thái Ngọc Duy: > On Windows, arguments starting with a forward slash is mangled as if > it were full pathname. This causes the patterns beginning with a slash > not to be passed to test-wildmatch correctly. Avoid mangling by never > accepting patterns starting with a slash. Those arguments must be > rewritten with a leading "XXX" (e.g. "/abc" becomes "XXX/abc"), which > will be removed by test-wildmatch itself before feeding the patterns > to wildmatch() or fnmatch(). > > Reported-by: Johannes Sixt <[email protected]> > Signed-off-by: Nguyễn Thái Ngọc Duy <[email protected]> > --- > On Sun, Nov 11, 2012 at 5:47 PM, Junio C Hamano <[email protected]> wrote: > > The title taken together with the above explanation makes it sound > > as if wildmatch code does not work with the pattern /foo on Windows > > at all and to avoid the issue (instead of fixing the breakage) this > > patch removes such tests.... > > OK how about this?
Thanks, the patch lets the tests pass on Windows. -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html

