diff options
author | Christian Heimes <christian@python.org> | 2017-09-07 01:59:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-07 01:59:22 (GMT) |
commit | d3b9f97e6d92bbfcf956638344fd827a40837b96 (patch) | |
tree | e81967444f13ea8c66288a0726fb7361d3e5436a /Makefile.pre.in | |
parent | 78ebc73f9b17373d25eb35e9f9511b2cb63825ff (diff) | |
download | cpython-d3b9f97e6d92bbfcf956638344fd827a40837b96.zip cpython-d3b9f97e6d92bbfcf956638344fd827a40837b96.tar.gz cpython-d3b9f97e6d92bbfcf956638344fd827a40837b96.tar.bz2 |
Update multissl test helper (#3349)
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 57d2ab7..f8a0dbc 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1051,6 +1051,13 @@ QUICKTESTOPTS= $(TESTOPTS) -x test_subprocess test_io test_lib2to3 \ quicktest: @DEF_MAKE_RULE@ platform $(TESTRUNNER) $(QUICKTESTOPTS) +# SSL tests +.PHONY: multisslcompile multissltest +multisslcompile: build_all + $(RUNSHARED) ./$(BUILDPYTHON) Tools/ssl/multissltests.py --compile-only + +multissltest: build_all + $(RUNSHARED) ./$(BUILDPYTHON) Tools/ssl/multissltests.py install: @FRAMEWORKINSTALLFIRST@ commoninstall bininstall maninstall @FRAMEWORKINSTALLLAST@ if test "x$(ENSUREPIP)" != "xno" ; then \ |