| Index: third_party/tlslite/Makefile
|
| diff --git a/third_party/tlslite/Makefile b/third_party/tlslite/Makefile
|
| index 6d9e7ac8c9bcbafd74c3f4508ddb132d7ae1da3f..871125e6a6bd03d348b185d9dbc24343112dff78 100644
|
| --- a/third_party/tlslite/Makefile
|
| +++ b/third_party/tlslite/Makefile
|
| @@ -1,4 +1,7 @@
|
| -
|
| +# Authors:
|
| +# Trevor Perrin
|
| +# Hubert Kario - test and test-dev
|
| +#
|
| .PHONY : default
|
| default:
|
| @echo To install tlslite run \"./setup.py install\" or \"make install\"
|
| @@ -22,3 +25,11 @@ docs:
|
|
|
| dist: docs
|
| ./setup.py sdist
|
| +
|
| +test:
|
| + cd tests/ && python ./tlstest.py server localhost:4433 . & sleep 1
|
| + cd tests/ && python ./tlstest.py client localhost:4433 .
|
| +
|
| +test-dev:
|
| + cd tests/ && PYTHONPATH=.. python ./tlstest.py server localhost:4433 . & sleep 1
|
| + cd tests/ && PYTHONPATH=.. python ./tlstest.py client localhost:4433 .
|
|
|