You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
257 B
11 lines
257 B
7 months ago
|
print "--SELFTEST-- loading test"
|
||
|
|
||
|
def step_init():
|
||
|
job.next_step([step_test, 1])
|
||
|
job.next_step([step_test, 2])
|
||
|
print "--STEPTEST-- step_init called"
|
||
|
|
||
|
def step_test(iteration):
|
||
|
print "--STEPTEST-- step_test called iteration=%d" % iteration
|
||
|
job.quit()
|