summaryrefslogtreecommitdiff
path: root/tests/scripts/functions/shell
diff options
context:
space:
mode:
Diffstat (limited to 'tests/scripts/functions/shell')
-rw-r--r--tests/scripts/functions/shell4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/scripts/functions/shell b/tests/scripts/functions/shell
index d89a0c83..55fec05b 100644
--- a/tests/scripts/functions/shell
+++ b/tests/scripts/functions/shell
@@ -148,7 +148,9 @@ all: ; @echo $(.SHELLSTATUS)
# Solaris 10 perl 5.8.4 puts signal number + 128 into the high 8 bits.
$ret >>= 8;
}
- $ret |= 128;
+ if ($osname ne 'os390') {
+ $ret |= 128;
+ }
run_make_test('.PHONY: all
$(shell kill -2 $$$$)