1print "--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
12
13 job.quit()
14