summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-02-11 22:42:19 -0800
committerisaacs <i@izs.me>2013-02-19 14:14:34 -0800
commit44be55fc4e490975eb3292dca12cfac1eec234bd (patch)
tree33ca2ba04d92796ef2fd8be6219296b1e6c2cba9
parent4e1bcdcab9f1d1eda72724b80d99cf6a564a3d52 (diff)
downloadnodejs-44be55fc4e490975eb3292dca12cfac1eec234bd.tar.gz
nodejs-44be55fc4e490975eb3292dca12cfac1eec234bd.tar.bz2
nodejs-44be55fc4e490975eb3292dca12cfac1eec234bd.zip
bench: Move process_loop to misc/spawn-echo
-rw-r--r--benchmark/misc/spawn-echo.js25
-rw-r--r--benchmark/process_loop.js19
2 files changed, 25 insertions, 19 deletions
diff --git a/benchmark/misc/spawn-echo.js b/benchmark/misc/spawn-echo.js
new file mode 100644
index 000000000..2b1b989e6
--- /dev/null
+++ b/benchmark/misc/spawn-echo.js
@@ -0,0 +1,25 @@
+var common = require('../common.js');
+var bench = common.createBenchmark(main, {
+ thousands: [1]
+});
+
+var spawn = require('child_process').spawn;
+function main(conf) {
+ var len = +conf.thousands * 1000;
+
+ bench.start();
+ go(len, len);
+}
+
+function go(n, left) {
+ if (--left === 0)
+ return bench.end(n);
+
+ var child = spawn('echo', ['hello']);
+ child.on('exit', function(code) {
+ if (code)
+ process.exit(code);
+ else
+ go(n, left);
+ });
+}
diff --git a/benchmark/process_loop.js b/benchmark/process_loop.js
deleted file mode 100644
index eeba06ab9..000000000
--- a/benchmark/process_loop.js
+++ /dev/null
@@ -1,19 +0,0 @@
-var util = require("util"),
- childProcess = require("child_process");
-
-function next (i) {
- if (i <= 0) return;
-
- var child = childProcess.spawn("echo", ["hello"]);
-
- child.stdout.addListener("data", function (chunk) {
- util.print(chunk);
- });
-
- child.addListener("exit", function (code) {
- if (code != 0) process.exit(-1);
- next(i - 1);
- });
-}
-
-next(500);