summaryrefslogtreecommitdiff
path: root/benchmark/http
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-04-28 22:22:20 -0700
committerRich Trott <rtrott@gmail.com>2017-05-03 17:00:31 -0700
commitff001c12b032c33dd54c6bcbb0bdba4fe549ec27 (patch)
treee64da372f03d880e898ceb651616f46179f5a18c /benchmark/http
parenteb535c5154306e9024a80ee16ecabaee0bfcef62 (diff)
downloadandroid-node-v8-ff001c12b032c33dd54c6bcbb0bdba4fe549ec27.tar.gz
android-node-v8-ff001c12b032c33dd54c6bcbb0bdba4fe549ec27.tar.bz2
android-node-v8-ff001c12b032c33dd54c6bcbb0bdba4fe549ec27.zip
test: move WPT to its own testing module
This is first in a hoped-for series of moves away from a monolithic common.js that is loaded for every test and towards a more modular approach. (In the end, common.js will hopefully contain checks for variables leaking into the global space and perhaps some of the more ubiquitous functions like common.mustCall().) Move the WPT testing code to its own module. PR-URL: https://github.com/nodejs/node/pull/12736 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Diffstat (limited to 'benchmark/http')
-rw-r--r--benchmark/http/http_server_for_chunky_client.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/http/http_server_for_chunky_client.js b/benchmark/http/http_server_for_chunky_client.js
index bdeb517344..3b0ec21cbe 100644
--- a/benchmark/http/http_server_for_chunky_client.js
+++ b/benchmark/http/http_server_for_chunky_client.js
@@ -5,7 +5,7 @@ var http = require('http');
var fs = require('fs');
var fork = require('child_process').fork;
var common = require('../common.js');
-var test = require('../../test/common.js');
+var test = require('../../test/common');
var pep = `${path.dirname(process.argv[1])}/_chunky_http_client.js`;
var PIPE = test.PIPE;