Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2010-11-26 06:16:40 +0300
committerBert Belder <bertbelder@gmail.com>2010-12-21 01:51:21 +0300
commit4eea3e45bd6c60d880ea68722be7dead9041407a (patch)
treec0e684c76493d2ae4ab664ea67da23d70fce2c01 /tools
parent3c3d1d31c56ece6cebf56317403b8cc60cd349fe (diff)
`make test` somewhat works
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py
index f8740e86bbf..9a66e627a86 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):