diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-08-08 17:01:38 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-08-08 17:01:44 -0700 |
commit | f145e35a93991afb7db98ed76453b5a77b14e2f4 (patch) | |
tree | fdfc74fa3794fb32eadfe21ebf607e368a014439 /tools/test.py | |
parent | df22ccb0de058bbd3d72c14ba4d89d917ad298e0 (diff) | |
download | nodejs-f145e35a93991afb7db98ed76453b5a77b14e2f4.tar.gz nodejs-f145e35a93991afb7db98ed76453b5a77b14e2f4.tar.bz2 nodejs-f145e35a93991afb7db98ed76453b5a77b14e2f4.zip |
Tests should point at the build directory until GYP is default
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 7c8156db0..1373ea24f 100755 --- a/tools/test.py +++ b/tools/test.py @@ -663,9 +663,9 @@ class Context(object): def GetVm(self, mode): if mode == 'debug': - name = 'out/Debug/node' + name = 'build/debug/node' else: - name = 'out/Release/node' + name = 'build/default/node' if utils.IsWindows() and not name.endswith('.exe'): name = os.path.abspath(name + '.exe') |