From 44bf05c1665c02ed5c4fc39e53f20cef326d8e24 Mon Sep 17 00:00:00 2001 From: Chris Leary Date: Thu, 29 Jul 2010 11:02:54 -0700 Subject: [PATCH] Fix trace-test.py to work on symlinks. (r=self). --- js/src/trace-test/trace-test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/js/src/trace-test/trace-test.py b/js/src/trace-test/trace-test.py index fc15ca039f..cf3d1338f3 100644 --- a/js/src/trace-test/trace-test.py +++ b/js/src/trace-test/trace-test.py @@ -279,6 +279,7 @@ if __name__ == '__main__': op.error('missing JS_SHELL argument') # We need to make sure we are using backslashes on Windows. JS, test_args = os.path.normpath(args[0]), args[1:] + JS = os.path.realpath(JS) # Burst through the symlinks! if OPTIONS.retest: OPTIONS.read_tests = OPTIONS.retest -- 2.11.4.GIT