summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-08-04 17:13:37 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-08-06 03:12:06 -0700
commit43d7cfca1835951e4ca44f8cd39db9b3a195563a (patch)
tree33de2aca03c875faacc363ecd00eb286134491c7 /tools/test.py
parenta979ab9d9970f8d3017d069479d41b4e4aa0d44c (diff)
downloadnodejs-43d7cfca1835951e4ca44f8cd39db9b3a195563a.tar.gz
nodejs-43d7cfca1835951e4ca44f8cd39db9b3a195563a.tar.bz2
nodejs-43d7cfca1835951e4ca44f8cd39db9b3a195563a.zip
gyp: fix test runner
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test.py b/tools/test.py
index e05d020d7..7c8156db0 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')