From f145e35a93991afb7db98ed76453b5a77b14e2f4 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 8 Aug 2011 17:01:38 -0700 Subject: [PATCH] Tests should point at the build directory until GYP is default --- tools/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test.py b/tools/test.py index 7c8156db0ec..1373ea24f17 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')