view tests/test-nested-repo @ 4380:8c2a18cc3096

Fix find_in_path not including some file extension logic under win32. Windows shell resolves utility path by combining PATH, the utility name and a set of file extensions from PATHEXT.
author Patrick Mezard <pmezard@gmail.com>
date Sat, 28 Apr 2007 11:43:31 +0200
parents 890e285c52a1
children d316124ebbea
line wrap: on
line source

#!/bin/sh

hg init a
cd a
hg init b
echo x > b/x
echo '# should print nothing'
hg st
echo '# should print ? b/x'
hg st b/x

hg add b/x

echo '# should print A b/x'
hg st
echo '# should forget b/x'
hg revert --all
echo '# should print nothing'
hg st b