diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2011-08-01 03:21:28 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2011-08-02 01:52:24 +0200 |
commit | e1bb241b51102a4212f71bc525b1c6687326d180 (patch) | |
tree | 4d49bc7ed8e5add600bc8a6f1b29d865756507f0 /Makefile | |
parent | e0d7c2cfa3f93e68d8036d8a98cbdf75e3b4ddc6 (diff) | |
download | node-new-e1bb241b51102a4212f71bc525b1c6687326d180.tar.gz |
test: add targets `test-http2` and `test-all-http2`
Passes `--use-http2` to node. Fixes #1430.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |