diff -r eb562ea207c3 -r cf241f12e977 tests/run-tests.py --- a/tests/run-tests.py Thu May 05 20:04:49 2011 +0200 +++ b/tests/run-tests.py Sat May 07 20:56:43 2011 +0300 @@ -902,7 +902,7 @@ the one we expect it to be. If not, print a warning to stderr.""" expecthg = os.path.join(PYTHONDIR, 'mercurial') actualhg = _gethgpath() - if actualhg != expecthg: + if os.path.abspath(actualhg) != os.path.abspath(expecthg): sys.stderr.write('warning: %s with unexpected mercurial lib: %s\n' ' (expected %s)\n' % (verb, actualhg, expecthg))