# HG changeset patch # User Mads Kiilerich # Date 1321836560 -3600 # Node ID 3e13ade423f08031045c2d5a2ef2a87a863a2614 # Parent 08635f4e44beeaab3133cefe6d742aa9324c0ede tests: use an alias to make msys 'pwd' return paths with forward slashes diff -r 08635f4e44be -r 3e13ade423f0 tests/run-tests.py --- a/tests/run-tests.py Mon Nov 21 01:49:20 2011 +0100 +++ b/tests/run-tests.py Mon Nov 21 01:49:20 2011 +0100 @@ -593,6 +593,8 @@ f.close() script = [] + if os.getenv('MSYSTEM'): + script.append('alias pwd="pwd -W"\n') for n, l in enumerate(t): if not l.endswith('\n'): l += '\n'