mosquitto/test/lib/09-util-topic-tokenise.py
Roger A. Light 343a984083 Big rejig of library tests
Includes full consistency between C/C++ library tests
2023-01-02 11:45:09 +00:00

24 lines
535 B
Python
Executable file

#!/usr/bin/env python3
from mosq_test_helper import *
def do_test(client):
port = mosq_test.get_port()
rc = 1
client_args = [client, str(port)]
client = mosq_test.start_client(filename=client.replace('/', '-'), cmd=client_args)
if mosq_test.wait_for_subprocess(client):
print("test client not finished")
rc=1
else:
rc=client.returncode
if rc:
print(f"Fail: {client}")
exit(rc)
do_test("c/09-util-topic-tokenise.test")
do_test("cpp/09-util-topic-tokenise.test")