summaryrefslogtreecommitdiff
path: root/tests/sigign.test
blob: 07a8180c65edcf22809a431131adfe7f3b96d286 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
#
# Check signal disposition transparency.
# Starting with commit v4.17-8-ge97a66f strace is expected
# to forward the signal disposition to tracees unchanged.
#
# Copyright (c) 2017-2018 The strace developers.
# All rights reserved.
#
# SPDX-License-Identifier: GPL-2.0-or-later

. "${srcdir=.}/init.sh"

run_prog ../list_sigaction_signum > /dev/null
saved_STRACE="$STRACE"

for sig in $(../list_sigaction_signum); do
	for ign in 0 1; do
		set_cmd="../set_sigign $ign $sig"
		check_cmd="../check_sigign $ign $sig"
		run_prog $set_cmd $check_cmd
		STRACE="$set_cmd $saved_STRACE"
		for i in '' -I1 -I2 -I3 -I4; do
			run_strace $i -enone $check_cmd
		done
	done
done