Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-11-02 02:03:32 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-11-02 02:51:20 +0300
commit97c97450632f2cfd2e8a246337ee4a780f5b35ff (patch)
tree71022061d576928cc4d39b71463c4f4f482dca4b /test
parent41c1563584bfb018a444e92f01f8cff87ccda30b (diff)
Back to WAF
Too much instability right now. Hopefully we can revisit autoconf soon.
Diffstat (limited to 'test')
-rw-r--r--test/simple/test-executable-path.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/simple/test-executable-path.js b/test/simple/test-executable-path.js
index f4e6401208f..6ba09f4d23c 100644
--- a/test/simple/test-executable-path.js
+++ b/test/simple/test-executable-path.js
@@ -4,8 +4,8 @@ path = require("path");
isDebug = (process.version.indexOf('debug') >= 0);
-debugPath = path.normalize(path.join(__dirname, '..', '..', 'build', 'node_g'));
-defaultPath = path.normalize(path.join(__dirname, '..', '..', 'build', 'node'));
+debugPath = path.normalize(path.join(__dirname, '..', '..', 'build', 'debug', 'node_g'));
+defaultPath = path.normalize(path.join(__dirname, '..', '..', 'build', 'default', 'node'));
console.log('debugPath: ' + debugPath);
console.log('defaultPath: ' + defaultPath);