android13/external/autotest/client/bin/self-test/tests/040-stepper-boot-chain

15 lines
287 B
Plaintext

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"