mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-04 13:20:44 +00:00
test/security_manager_sc: retry test on unecxected disconnect
This commit is contained in:
parent
092fc1dbc5
commit
d38af6c062
@ -271,6 +271,11 @@ def run(test_descriptor, nodes):
|
|||||||
# on error, test is finished, else wait for notify
|
# on error, test is finished, else wait for notify
|
||||||
if status != '0':
|
if status != '0':
|
||||||
return
|
return
|
||||||
|
elif line.startswith('DISCONNECTED'):
|
||||||
|
# Abort on unexpected disconnect
|
||||||
|
print('%s unexpected disconnect' % node.get_name())
|
||||||
|
test_descriptor['error'] = 'DISCONNECTED'
|
||||||
|
return
|
||||||
elif line.startswith('COUNTER'):
|
elif line.startswith('COUNTER'):
|
||||||
print('%s notification received' % node.get_name())
|
print('%s notification received' % node.get_name())
|
||||||
return;
|
return;
|
||||||
@ -394,6 +399,9 @@ def run_test(test_descriptor):
|
|||||||
# run test
|
# run test
|
||||||
try:
|
try:
|
||||||
run(test_descriptor, nodes)
|
run(test_descriptor, nodes)
|
||||||
|
if 'error' in test_descriptor:
|
||||||
|
sys.exit()
|
||||||
|
raise NameError(test_descriptor['error'])
|
||||||
|
|
||||||
# identify iut and tester
|
# identify iut and tester
|
||||||
if iut_role == 'responder':
|
if iut_role == 'responder':
|
||||||
@ -443,6 +451,9 @@ def run_test(test_descriptor):
|
|||||||
print('Interrupted')
|
print('Interrupted')
|
||||||
test_descriptor['interrupted'] = 'EXIT'
|
test_descriptor['interrupted'] = 'EXIT'
|
||||||
|
|
||||||
|
except NameError:
|
||||||
|
print('Run-time error')
|
||||||
|
|
||||||
# shutdown
|
# shutdown
|
||||||
for node in nodes:
|
for node in nodes:
|
||||||
node.terminate()
|
node.terminate()
|
||||||
@ -471,9 +482,24 @@ with open('sm_test.csv') as csvfile:
|
|||||||
print('Test: %s (completed)' % test_name)
|
print('Test: %s (completed)' % test_name)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# run test
|
# run test (max 10 times)
|
||||||
print(test_descriptor)
|
tries = 10
|
||||||
run_test(test_descriptor)
|
done = False
|
||||||
|
while not done:
|
||||||
|
print(test_descriptor)
|
||||||
|
run_test(test_descriptor)
|
||||||
|
tries = tries - 1
|
||||||
|
done = True
|
||||||
|
|
||||||
|
# escalate CTRL-C
|
||||||
|
if 'interrupted' in test_descriptor:
|
||||||
|
break
|
||||||
|
|
||||||
|
# repeat on 'error'
|
||||||
|
if 'error' in test_descriptor:
|
||||||
|
del test_descriptor['error']
|
||||||
|
if tries > 0:
|
||||||
|
done = False
|
||||||
|
|
||||||
if 'interrupted' in test_descriptor:
|
if 'interrupted' in test_descriptor:
|
||||||
break
|
break
|
||||||
|
Loading…
x
Reference in New Issue
Block a user