mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
841 B
31 lines
841 B
libDir = node.path.join(node.path.dirname(__filename), "../lib");
|
|
node.libraryPaths.unshift(libDir);
|
|
node.mixin(require("/utils.js"));
|
|
var benchmarks = [ "static_http_server.js"
|
|
, "timers.js"
|
|
, "process_loop.js"
|
|
];
|
|
|
|
var benchmark_dir = node.path.dirname(__filename);
|
|
|
|
function exec (script, callback) {
|
|
var start = new Date();
|
|
var child = node.createChildProcess(ARGV[0], [node.path.join(benchmark_dir, script)]);
|
|
child.addListener("exit", function (code) {
|
|
var elapsed = new Date() - start;
|
|
callback(elapsed, code);
|
|
});
|
|
}
|
|
|
|
function runNext (i) {
|
|
if (i >= benchmarks.length) return;
|
|
print(benchmarks[i] + ": ");
|
|
exec(benchmarks[i], function (elapsed, code) {
|
|
if (code != 0) {
|
|
puts("ERROR ");
|
|
}
|
|
puts(elapsed);
|
|
runNext(i+1);
|
|
});
|
|
};
|
|
runNext(0);
|
|
|