diff options
author | Bert Belder <bertbelder@gmail.com> | 2010-11-26 04:16:40 +0100 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2010-12-20 23:51:21 +0100 |
commit | 4eea3e45bd6c60d880ea68722be7dead9041407a (patch) | |
tree | c0e684c76493d2ae4ab664ea67da23d70fce2c01 /tools/test.py | |
parent | 3c3d1d31c56ece6cebf56317403b8cc60cd349fe (diff) | |
download | node-new-4eea3e45bd6c60d880ea68722be7dead9041407a.tar.gz |
`make test` somewhat works
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py index f8740e86bb..9a66e627a8 100755 --- a/tools/test.py +++ b/tools/test.py @@ -669,7 +669,7 @@ class Context(object): name = 'build/default/node' if utils.IsWindows() and not name.endswith('.exe'): - name = name + '.exe' + name = os.path.abspath(name + '.exe') return name def GetVmCommand(self, testcase, mode): |