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
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-03-09 02:07:06 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-03-09 04:57:38 +0300
commitc488e5775a57391b9b2a8037f849975c0084d05c (patch)
tree40bf358107c240ad0b4f428b5c94db0884e15e03 /benchmark
parenta38aa02f9f31ab7ace90c737e064bb6f2b78e3cd (diff)
Remove process.mixin dependencies from benchmark scripts
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/http_simple.js3
-rw-r--r--benchmark/process_loop.js3
-rw-r--r--benchmark/run.js3
3 files changed, 6 insertions, 3 deletions
diff --git a/benchmark/http_simple.js b/benchmark/http_simple.js
index 8bfc0972446..b83c2c9430a 100644
--- a/benchmark/http_simple.js
+++ b/benchmark/http_simple.js
@@ -3,7 +3,8 @@ path = require("path");
libDir = path.join(path.dirname(__filename), "../lib");
require.paths.unshift(libDir);
-process.mixin(require("sys"));
+var sys = (require("sys"));
+for (var i in sys) global[i] = sys[i];
http = require("http");
fixed = ""
diff --git a/benchmark/process_loop.js b/benchmark/process_loop.js
index 372a89cf349..0ee61b76a2b 100644
--- a/benchmark/process_loop.js
+++ b/benchmark/process_loop.js
@@ -1,7 +1,8 @@
var path = require("path");
libDir = path.join(path.dirname(__filename), "../lib");
require.paths.unshift(libDir);
-process.mixin(require("sys"));
+var sys = (require("sys"));
+for (var i in sys) global[i] = sys[i];
function next (i) {
if (i <= 0) return;
diff --git a/benchmark/run.js b/benchmark/run.js
index 8466b9760fa..60b7752c7a5 100644
--- a/benchmark/run.js
+++ b/benchmark/run.js
@@ -1,7 +1,8 @@
var path = require("path");
libDir = path.join(path.dirname(__filename), "../lib");
require.paths.unshift(libDir);
-process.mixin(require("sys"));
+var sys = (require("sys"));
+for (var i in sys) global[i] = sys[i];
var benchmarks = [ "static_http_server.js"
, "timers.js"
, "process_loop.js"