summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-11-28 23:42:12 -0800
committerRich Trott <rtrott@gmail.com>2019-12-01 02:42:27 -0800
commit5b52a62ab153ad2b06164b8b7904581869c3c96c (patch)
treee5e311809eb6414499adaa53defe87b37e46f33e /test
parent05c5ebbe12db965bcf3fa0f652352fb337b09723 (diff)
downloadandroid-node-v8-5b52a62ab153ad2b06164b8b7904581869c3c96c.tar.gz
android-node-v8-5b52a62ab153ad2b06164b8b7904581869c3c96c.tar.bz2
android-node-v8-5b52a62ab153ad2b06164b8b7904581869c3c96c.zip
test: move test-http-max-http-headers to parallel
test-http-max-http-headers seems to run fine in parallel, even with `tools/test.py -j 96 --repeat 192 test/parallel/test-http-max-http-headers.js`. The same applies to `test-set-http-max-http-headers.js` which (as written) depends on `test-http-max-http-headers.js` being in the same directory. So that is being moved too. PR-URL: https://github.com/nodejs/node/pull/30712 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-http-max-http-headers.js (renamed from test/sequential/test-http-max-http-headers.js)0
-rw-r--r--test/parallel/test-set-http-max-http-headers.js (renamed from test/sequential/test-set-http-max-http-headers.js)6
2 files changed, 2 insertions, 4 deletions
diff --git a/test/sequential/test-http-max-http-headers.js b/test/parallel/test-http-max-http-headers.js
index 04fdebd48c..04fdebd48c 100644
--- a/test/sequential/test-http-max-http-headers.js
+++ b/test/parallel/test-http-max-http-headers.js
diff --git a/test/sequential/test-set-http-max-http-headers.js b/test/parallel/test-set-http-max-http-headers.js
index cfe1ed6953..c4df779d2b 100644
--- a/test/sequential/test-set-http-max-http-headers.js
+++ b/test/parallel/test-set-http-max-http-headers.js
@@ -37,8 +37,7 @@ test(function(cb) {
NODE_DEBUG: 'http'
});
- // Validate that the test fails if the max header size is too small.
- // Validate that the test now passes if the same limit becomes large enough.
+ // Validate that the test now passes if the same limit is large enough.
const args = ['--expose-internals',
'--max-http-header-size=1024',
testName,
@@ -76,8 +75,7 @@ if (!process.config.variables.node_without_node_options) {
});
test(function(cb) {
- // Validate that the test now passes if the same limit
- // becomes large enough.
+ // Validate that the test now passes if the same limit is large enough.
const args = ['--expose-internals', testName, '1024'];
const cp = spawn(process.execPath, args, { env, stdio: 'inherit' });