aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPaul Vinciguerra <pvinci@vinciconsulting.com>2019-12-26 19:13:02 -0500
committerPaul Vinciguerra <pvinci@vinciconsulting.com>2019-12-26 19:13:02 -0500
commit3f7b0f4a7cd30a88a913a963c38b8361738065d6 (patch)
treecf6463eedd1cf93bb7ec0d510a8cd74553a230c7 /test
parent29c6132108be68feb11c8d9bfaaf674cba86ee33 (diff)
tests: tls - don't print skip info to stdout
Type: test Change-Id: Id1bffbfe698113d85c4c6bf432ddf4908ed2b788 Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test')
-rw-r--r--test/test_tls.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/test_tls.py b/test/test_tls.py
index 6124dd250f0..86ee3cc80a5 100644
--- a/test/test_tls.py
+++ b/test/test_tls.py
@@ -14,7 +14,7 @@ def checkQat():
if r:
return True
else:
- print("NO QAT! EXIT!")
+ # print("NO QAT! EXIT!")
return False
@@ -30,7 +30,8 @@ def checkOpenSSLVersion():
status = p.returncode
if status:
- print("openssl version error!")
+ pass
+ # print("openssl version error!")
else:
ssl_ver_src = re.findall(r"(\d+)\.+\d+.+\d+", output)
ssl_ver = int(ssl_ver_src[0])
@@ -39,7 +40,8 @@ def checkOpenSSLVersion():
else:
ret = True
else:
- print("NO OPENSSL_ROOT_DIR!")
+ # print("NO OPENSSL_ROOT_DIR!")
+ pass
return ret
@@ -141,5 +143,6 @@ class TestTLS(VppTestCase):
ip_t01.remove_vpp_config()
ip_t10.remove_vpp_config()
+
if __name__ == '__main__':
unittest.main(testRunner=VppTestRunner)