mosquitto/test/lib/09-util-topic-tokenise.py
2018-11-27 11:26:21 +00:00

19 lines
405 B
Python
Executable File

#!/usr/bin/env python
from mosq_test_helper import *
rc = 1
client_args = sys.argv[1:]
env = dict(os.environ)
env['LD_LIBRARY_PATH'] = '../../lib:../../lib/cpp'
try:
pp = env['PYTHONPATH']
except KeyError:
pp = ''
env['PYTHONPATH'] = '../../lib/python:'+pp
client = mosq_test.start_client(filename=sys.argv[1].replace('/', '-'), cmd=client_args, env=env)
client.wait()
exit(client.returncode)