ash: add two testcases for (not yet fixed) ash bugs
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 17 May 2010 00:56:18 +0000 (02:56 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 17 May 2010 00:56:18 +0000 (02:56 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash_test/ash-misc/source2.right [new file with mode: 0644]
shell/ash_test/ash-misc/source2.tests [new file with mode: 0755]
shell/ash_test/ash-signals/signal5.right [new file with mode: 0644]
shell/ash_test/ash-signals/signal5.tests [new file with mode: 0755]

diff --git a/shell/ash_test/ash-misc/source2.right b/shell/ash_test/ash-misc/source2.right
new file mode 100644 (file)
index 0000000..ce7171c
--- /dev/null
@@ -0,0 +1 @@
+Done: 0
diff --git a/shell/ash_test/ash-misc/source2.tests b/shell/ash_test/ash-misc/source2.tests
new file mode 100755 (executable)
index 0000000..ab63247
--- /dev/null
@@ -0,0 +1,4 @@
+# Not fixed yet
+false
+. /dev/null
+echo Done: $?
diff --git a/shell/ash_test/ash-signals/signal5.right b/shell/ash_test/ash-signals/signal5.right
new file mode 100644 (file)
index 0000000..35fcbd6
--- /dev/null
@@ -0,0 +1,12 @@
+Waiting
+sleeping for 1 sec
+sleeping for 2 sec
+1 sec passed, sending USR1 to parent
+USR1 received
+Wait exit code: 138
+Waiting
+2 sec passed, sending USR1 to parent
+USR1 received
+Wait exit code: 138
+Waiting
+Wait returned 0
diff --git a/shell/ash_test/ash-signals/signal5.tests b/shell/ash_test/ash-signals/signal5.tests
new file mode 100755 (executable)
index 0000000..b75b149
--- /dev/null
@@ -0,0 +1,14 @@
+# Not fixed yet
+trap "echo USR1 received" USR1
+stub() {
+    echo "sleeping for $1 sec"
+    sleep $1
+    echo "$1 sec passed, sending USR1 to parent"
+    kill -USR1 $$
+}
+stub 2 &
+stub 1 &
+until { echo "Waiting"; wait; } do
+    echo "Wait exit code: $?"
+done
+echo "Wait returned 0"