ash,hush: testcase for "exit" without arguments in a trap
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 19 Feb 2020 11:10:41 +0000 (12:10 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 19 Feb 2020 11:10:41 +0000 (12:10 +0100)
hush fails this one

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash_test/ash-misc/exitcode_trap2.right [new file with mode: 0644]
shell/ash_test/ash-misc/exitcode_trap2.tests [new file with mode: 0755]
shell/hush_test/hush-misc/exitcode_trap2.right [new file with mode: 0644]
shell/hush_test/hush-misc/exitcode_trap2.tests [new file with mode: 0755]

diff --git a/shell/ash_test/ash-misc/exitcode_trap2.right b/shell/ash_test/ash-misc/exitcode_trap2.right
new file mode 100644 (file)
index 0000000..6644d86
--- /dev/null
@@ -0,0 +1 @@
+42:42
diff --git a/shell/ash_test/ash-misc/exitcode_trap2.tests b/shell/ash_test/ash-misc/exitcode_trap2.tests
new file mode 100755 (executable)
index 0000000..f259774
--- /dev/null
@@ -0,0 +1,9 @@
+# "exit" in trap should not use last command's exitcode,
+# but exitcode on entering the trap.
+$THIS_SH -c '
+ trap "false;exit" term
+ kill $$ &
+ (exit 42)
+ wait
+'
+echo 42:$?
diff --git a/shell/hush_test/hush-misc/exitcode_trap2.right b/shell/hush_test/hush-misc/exitcode_trap2.right
new file mode 100644 (file)
index 0000000..6644d86
--- /dev/null
@@ -0,0 +1 @@
+42:42
diff --git a/shell/hush_test/hush-misc/exitcode_trap2.tests b/shell/hush_test/hush-misc/exitcode_trap2.tests
new file mode 100755 (executable)
index 0000000..f259774
--- /dev/null
@@ -0,0 +1,9 @@
+# "exit" in trap should not use last command's exitcode,
+# but exitcode on entering the trap.
+$THIS_SH -c '
+ trap "false;exit" term
+ kill $$ &
+ (exit 42)
+ wait
+'
+echo 42:$?