blob: 8483d5c8cd63a5653c71725ef1e9e75d5a9f6587 [file] [log] [blame]
apw7d9f8002006-04-04 08:52:52 +00001print "--SELFTEST-- loading test"
2
3def step_init():
4 print "--STEPTEST-- step_init called"
5 step_test(1)
6
7def step_test(iteration):
8 if (iteration < 5):
9 job.next_step([step_test, iteration + 1])
10
11 print "--STEPTEST-- step_test called iteration=%d" % iteration