t7400: avoid path mangling issues
commitc517e73d0f116f8293f1fbc7f92bb60ea8047b0f
authorJohannes Sixt <j6t@kdbg.org>
Thu, 14 Jun 2012 12:10:27 +0000 (14 14:10 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 14 Jun 2012 18:00:06 +0000 (14 11:00 -0700)
tree3e0ab03df78c74ccb71b7faed630794b48dabe82
parent758615e2517db8b9fda9218afded06a3e1b42e20
t7400: avoid path mangling issues

A recently introduced test uses an absolute path. But when run on Windows
using the MSYS bash, such a path is mangled into a Windows style path when
it is passed to 'git config'. The subsequent 'test' then compares the
mangled path to the unmangled version and reports a failure.

A path beginning with two slashes denotes a network directory
(//server/share path) and is not mangled. Use that trick to side-step the
issue. Just in case that 'git submodule init' regresses in such a way that
it accesses the URL, use a path name that is unlikely to exist on POSIX
systems, and that cannot be a server name on Windows.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7400-submodule-basic.sh