From 0281e1acf6e9cb3cd668dda91d4933160c4b95a7 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 7 Apr 2010 16:19:50 -0700 Subject: [PATCH] Fix benchmark script for testing both old and new version --- benchmark/http_simple.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/benchmark/http_simple.js b/benchmark/http_simple.js index 99685f7..9bfeadb 100644 --- a/benchmark/http_simple.js +++ b/benchmark/http_simple.js @@ -1,7 +1,10 @@ path = require("path"); var puts = require("sys").puts; -http = require("http"); +var old = false; + +http = require(old ? "http_old" : 'http'); +if (old) puts('old version'); fixed = "" for (var i = 0; i < 20*1024; i++) { @@ -49,5 +52,6 @@ http.createServer(function (req, res) { , "Content-Length": content_length } ); + if (old) res.write(body, 'ascii'); res.close(body, 'ascii'); }).listen(8000); -- 2.7.4