/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/termsig.test
27 строк
713 B
Dmitry V. Levin
Update copyright headers
30 окт 2023, 11:00
30 окт 2023, 11:00
7adc8e7
Код
Авторство
О чём код?
#!/bin/sh # # Check termination signal forwarding. # # Copyright (c) 2017-2023 The strace developers. # All rights reserved. # # SPDX-License-Identifier: GPL-2.0-or-later . "${srcdir=.}/init.sh" run_expect_termsig="../run_expect_termsig 15" unblock_reset_raise="../unblock_reset_raise 15" block_reset_run="../block_reset_run 15" orig_STRACE="$STRACE" run_prog $run_expect_termsig $unblock_reset_raise run_prog $run_expect_termsig $block_reset_run $unblock_reset_raise for i in 1 2 3 4; do for D in '' -D; do for STRACE in "$run_expect_termsig $orig_STRACE" \ "$run_expect_termsig $block_reset_run $orig_STRACE"; do run_strace -I$i $D -enone -esignal=none $unblock_reset_raise done done done