make sure the unittest pass withouth SSL

This commit is contained in:
Benjamin Sergeant
2019-10-03 09:41:17 -07:00
parent adcbf0d208
commit bab2295fc3
2 changed files with 7 additions and 1 deletions

View File

@ -84,6 +84,10 @@ test_mbedtls:
mkdir -p build && (cd build ; cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_TLS=1 -DUSE_MBED_TLS=1 -DUSE_TEST=1 .. ; make -j 4)
(cd test ; python2.7 run.py -r)
test_no_ssl:
mkdir -p build && (cd build ; cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_TEST=1 .. ; make -j 4)
(cd test ; python2.7 run.py -r)
ws_test: ws
(cd ws ; env DEBUG=1 PATH=../ws/build:$$PATH bash test_ws.sh)