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:
authorBen Noordhuis <info@bnoordhuis.nl>2011-08-02 23:28:31 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2011-08-03 01:40:56 +0400
commit38f948a373aa3dc8c46628bbd53edf07b6f16ea7 (patch)
tree42045a2315cdc2786bd2a5c689c2b5904e0575e2 /Makefile
parent48dcb905f6cfc44a8bbbddfa3d1c25415b2b5287 (diff)
http: make http2 the default, legacy backend is available with --use-http1
Fixes #1441.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index f2f8889d0de..450775870d7 100644
--- a/Makefile
+++ b/Makefile
@@ -35,8 +35,8 @@ uninstall:
test: all
python tools/test.py --mode=release simple message
-test-http2: all
- python tools/test.py --mode=release --use-http2 simple message
+test-http1: all
+ python tools/test.py --mode=release --use-http1 simple message
test-valgrind: all
python tools/test.py --mode=release --valgrind simple message
@@ -44,8 +44,8 @@ test-valgrind: all
test-all: all
python tools/test.py --mode=debug,release
-test-all-http2: all
- python tools/test.py --mode=debug,release --use-http2
+test-all-http1: all
+ python tools/test.py --mode=debug,release --use-http1
test-all-valgrind: all
python tools/test.py --mode=debug,release --valgrind