Home | History | Annotate | Download | only in tests
      1 print "--SELFTEST-- loading test"
      2 
      3 def step_init():
      4 	job.next_step([step_test, 1])
      5 	job.next_step([step_test, 2])
      6 	print "--STEPTEST-- step_init called"
      7 	
      8 def step_test(iteration):
      9 	print "--STEPTEST-- step_test called iteration=%d" % iteration
     10