summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-08-23 14:08:53 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-08-23 14:10:39 -0700
commita7300c8297693e26d2504da4a2e5813453306cd9 (patch)
tree4adc2bc58c83e20b7182446649ea6537b716a5d4 /tools
parent879eb16280688436d791ebb79b05198ac4e4b038 (diff)
downloadnode-new-a7300c8297693e26d2504da4a2e5813453306cd9.tar.gz
WAF builds in out/ instead of build/
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 5eac408a9c..7c8156db0e 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'
+ name = 'out/Debug/node'
else:
- name = 'build/Release/node'
+ name = 'out/Release/node'
if utils.IsWindows() and not name.endswith('.exe'):
name = os.path.abspath(name + '.exe')