mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 01:01:11 +08:00
10 lines
347 B
Python
Executable File
10 lines
347 B
Python
Executable File
#!/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", "True"])
|
|
|