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-01 05:21:28 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2011-08-02 03:52:24 +0400
commite1bb241b51102a4212f71bc525b1c6687326d180 (patch)
tree4d49bc7ed8e5add600bc8a6f1b29d865756507f0 /Makefile
parente0d7c2cfa3f93e68d8036d8a98cbdf75e3b4ddc6 (diff)
test: add targets `test-http2` and `test-all-http2`
Passes `--use-http2` to node. Fixes #1430.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 84174032bdc..f2f8889d0de 100644
--- a/Makefile
+++ b/Makefile
@@ -35,12 +35,18 @@ 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-valgrind: all
python tools/test.py --mode=release --valgrind simple message
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-valgrind: all
python tools/test.py --mode=debug,release --valgrind