We do our best to keep copyright headers up to date, yet git history provides better information on this subject and is more accurate than copyright headers.
18 lines
344 B
Bash
Executable File
18 lines
344 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Check signal injection.
|
|
#
|
|
# Copyright (c) 2017-2018 The strace developers.
|
|
# All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
: ${suffix=}
|
|
[ -z "${name_override-}" ] || NAME="$name_override"
|
|
|
|
run_strace -a12 -echdir,exit_group -einject=chdir:signal=USR1"$suffix" \
|
|
../$NAME
|
|
match_diff
|