You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mosquitto/test/lib/08-ssl-bad-cacert.py

21 lines
402 B
Python

#!/usr/bin/env python3
from mosq_test_helper import *
if sys.version < '2.7':
print("WARNING: SSL not supported on Python 2.6")
exit(0)
rc = 1
client_args = sys.argv[1:]
client = mosq_test.start_client(filename=sys.argv[1].replace('/', '-'), cmd=client_args)
if mosq_test.wait_for_subprocess(client):
print("test client not finished")
rc=1
else:
rc=client.returncode
exit(rc)