test11.ion 243 B

123456789101112
  1. #!./testshell
  2. echo 'Test 11 (variant of 9):'
  3. echo 'Try to break wait using SIGINT before wc completes'
  4. echo 'After you break wait, it should NOT print "Going on"'
  5. echo 'wc &'
  6. gzip < ../target/debug/ion | wc &
  7. echo wait
  8. wait
  9. echo "Going on"