1 test: foo 2 echo FAIL 3 4 test: bar 5 echo PASS_test 6 7 foo: 8 echo FAIL_foo 9 10 foo: 11 echo PASS_foo 12 13 bar: 14 echo PASS_bar 15