Imported from ../bash-3.1.tar.gz.
[platform/upstream/bash.git] / tests / jobs.tests
index 26adfe0..5866b0c 100644 (file)
@@ -4,10 +4,18 @@ ${THIS_SH} ./jobs1.sub
 # test out fg/bg failure in a subshell
 ${THIS_SH} ./jobs2.sub
 
+# test out behavior of waiting for background pids -- bug in versions
+# before 2.03
+${THIS_SH} ./jobs3.sub
+
+# test out behavior of using job control notation when job control is not
+# active
+${THIS_SH} ./jobs4.sub
+
 jobs
 echo $?
 
-# should be a job-control-not-enabled error
+# a no-such-job error, since we can use job control notation without job control
 wait %1
 
 # make sure we can't fg a job started when job control was not active