Add Thread Certification 9.2.15 to automated test. (#769)

This commit is contained in:
Jonathan Hui
2016-10-10 09:46:07 -07:00
committed by GitHub
parent f3ef4046db
commit 7b0280bbde
4 changed files with 143 additions and 14 deletions
+4 -1
View File
@@ -504,7 +504,7 @@ class Node:
self.pexpect.expect('Done')
def send_mgmt_pending_set(self, pending_timestamp=None, active_timestamp=None, delay_timer=None, channel=None,
panid=None, master_key=None):
panid=None, master_key=None, mesh_local=None):
cmd = 'dataset mgmtsetcommand pending '
if pending_timestamp != None:
@@ -525,6 +525,9 @@ class Node:
if master_key != None:
cmd += 'masterkey ' + master_key + ' '
if mesh_local != None:
cmd += 'localprefix ' + mesh_local + ' '
self.send_command(cmd)
self.pexpect.expect('Done')