diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-08-04 17:13:37 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-08-06 03:12:06 -0700 |
commit | 43d7cfca1835951e4ca44f8cd39db9b3a195563a (patch) | |
tree | 33de2aca03c875faacc363ecd00eb286134491c7 /tools/test.py | |
parent | a979ab9d9970f8d3017d069479d41b4e4aa0d44c (diff) | |
download | nodejs-43d7cfca1835951e4ca44f8cd39db9b3a195563a.tar.gz nodejs-43d7cfca1835951e4ca44f8cd39db9b3a195563a.tar.bz2 nodejs-43d7cfca1835951e4ca44f8cd39db9b3a195563a.zip |
gyp: fix test runner
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 4 |
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') |