test08.ion 348 B

12345678910111213141516
  1. #!./testshell
  2. echo 'Test 8: Start a child that is to be interrupted by SIGINT.'
  3. echo ' The shell should not continue with the script'
  4. source lib.ion
  5. echo
  6. echo 'Should exit immedeatly after you break cat by SIGINT'
  7. echo cat
  8. cat
  9. sleep 1
  10. echo 'If you see this, you have a problem'
  11. sleep 1
  12. echo 'If you see this, you have even more problems'