summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2015-01-08 13:37:32 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2015-01-08 23:21:18 +0100
commit3e7a25dd95194269fd112aa5677fc5e6d4156135 (patch)
tree9b440c384fc7031893ab51c1684fad70b86ce50f /tools
parent57a2cab76953269c0807dc3964004a9c968c27fe (diff)
downloadandroid-node-v8-3e7a25dd95194269fd112aa5677fc5e6d4156135.tar.gz
android-node-v8-3e7a25dd95194269fd112aa5677fc5e6d4156135.tar.bz2
android-node-v8-3e7a25dd95194269fd112aa5677fc5e6d4156135.zip
test: remove --use-http1 test runner flag
The flag was used for a short while during the v0.5 development cycle, four years ago. Remove it, it's long overdue. PR-URL: https://github.com/iojs/io.js/pull/262 Reviewed-By: Bert Belder <bertbelder@gmail.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/test.py b/tools/test.py
index 7241f162d7..b24ca9ba53 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -1235,8 +1235,6 @@ def BuildOptions():
result.add_option("--snapshot", help="Run the tests with snapshot turned on",
default=False, action="store_true")
result.add_option("--special-command", default=None)
- result.add_option("--use-http1", help="Pass --use-http1 switch to node",
- default=False, action="store_true")
result.add_option("--valgrind", help="Run tests through valgrind",
default=False, action="store_true")
result.add_option("--cat", help="Print the source of the tests",
@@ -1397,11 +1395,6 @@ def Main():
buildspace = dirname(shell)
processor = GetSpecialCommandProcessor(options.special_command)
- if options.use_http1:
- def wrap(processor):
- return lambda args: processor(args[:1] + ['--use-http1'] + args[1:])
- processor = wrap(processor)
-
context = Context(workspace,
buildspace,
VERBOSE,