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:
authorRyan Dahl <ry@tinyclouds.org>2011-08-05 04:13:37 +0400
committerRyan Dahl <ry@tinyclouds.org>2011-08-06 14:12:06 +0400
commit43d7cfca1835951e4ca44f8cd39db9b3a195563a (patch)
tree33de2aca03c875faacc363ecd00eb286134491c7 /tools
parenta979ab9d9970f8d3017d069479d41b4e4aa0d44c (diff)
gyp: fix test runner
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test.py b/tools/test.py
index e05d020d71c..7c8156db0ec 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -663,9 +663,9 @@ class Context(object):
def GetVm(self, mode):
if mode == 'debug':
- name = 'build/debug/node_g'
+ name = 'out/Debug/node'
else:
- name = 'build/default/node'
+ name = 'out/Release/node'
if utils.IsWindows() and not name.endswith('.exe'):
name = os.path.abspath(name + '.exe')