Skip to content

Commit f416244

Browse files
authored
[submodule] Pull ot-br-posix to latest master for network provisioning (project-chip#4629)
* Pull ot-br-posix version * Update cirque test
1 parent fcc0e36 commit f416244

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

src/test_driver/linux-cirque/helper/CHIPTestBase.py

+20-5
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,28 @@ def sequenceMatch(self, string, patterns):
109109

110110
def connect_to_thread_network(self):
111111
self.logger.info("Running commands to form Thread network")
112+
time.sleep(3) # Avoid sending commands at very beginning.
113+
otInitCommands = [
114+
"ot-ctl thread stop",
115+
"ot-ctl ifconfig down",
116+
"ot-ctl dataset init new",
117+
"ot-ctl dataset panid 0x1234",
118+
"ot-ctl dataset networkname OpenThread",
119+
"ot-ctl dataset channel 13",
120+
"ot-ctl dataset extpanid dead00beef00cafe",
121+
"ot-ctl dataset meshlocalprefix \"fd01:2345:6789:0abc::\"",
122+
"ot-ctl dataset masterkey 00112233445566778899aabbccddeeff",
123+
"ot-ctl dataset commit active",
124+
"ot-ctl dataset active", # This will emit an output of dataset in flask.log
125+
"ot-ctl ifconfig up",
126+
"ot-ctl thread start",
127+
]
112128
for device in self.non_ap_devices:
113-
self.execute_device_cmd(device['id'],
114-
"bash -c 'ot-ctl panid 0x1234 && \
115-
ot-ctl ifconfig up && \
116-
ot-ctl thread start'")
129+
# Set default openthread provisioning
130+
for cmd in otInitCommands:
131+
self.execute_device_cmd(device['id'], cmd)
117132
self.logger.info("Waiting for Thread network to be formed...")
118-
time.sleep(10)
133+
time.sleep(15)
119134
roles = set()
120135
for device in self.non_ap_devices:
121136
reply = self.execute_device_cmd(device['id'], 'ot-ctl state')

third_party/ot-br-posix/repo

Submodule repo updated 118 files

0 commit comments

Comments
 (0)