# HG changeset patch # User Mads Kiilerich # Date 1321836560 -3600 # Node ID 8cbcb86e4fa86043962031fc0b9fe124a80b86d5 # Parent 5923d03569b388876ff1ca3f1328e81f47bd9186 tests: use an alias to make msys 'pwd' return paths with forward slashes [ original upstream message ] diff -r 5923d03569b3 -r 8cbcb86e4fa8 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'