android_mt6572_jiabo/external/autotest/client/bin/self-test/tests/040-stepper-boot-chain
2025-09-05 16:56:03 +08:00

14 lines
287 B
Text

print "--SELFTEST-- loading test"
def step_init():
job.next_step([step_two])
print "--STEPTEST-- step_init called"
job.quit()
def step_two():
job.next_step([step_three])
print "--STEPTEST-- step_two called"
job.quit()
def step_three():
print "--STEPTEST-- step_three called"