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.
10 lines
347 B
Python
10 lines
347 B
Python
#!/usr/bin/env python3
|
|
# Test whether a broker handles cleansession and local_cleansession correctly on bridges
|
|
|
|
from mosq_test_helper import *
|
|
from collections import namedtuple
|
|
|
|
(port_a_listen, port_b_listen) = mosq_test.get_port(2)
|
|
subprocess.run(['./06-bridge-clean-session-core.py', str(port_a_listen), str(port_b_listen), "False", "None"])
|
|
|