/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v6.13
tests/interactive_block.test
20 строк
507 B
Dmitry V. Levin
Add copyright headers to some files that lack them
25 дек 2018, 02:46
25 дек 2018, 02:46
92e347b
Код
Авторство
О чём код?
#!/bin/sh # # Check that in interactive mode those signals that were blocked # at strace startup will remain blocked. # # Copyright (c) 2017-2018 The strace developers. # All rights reserved. # # SPDX-License-Identifier: GPL-2.0-or-later . "${srcdir=.}/init.sh" strace0="$STRACE" for signo in 1 2 3 13 14 15; do blocksig="../block_reset_raise_run $signo" run_prog $blocksig ../umovestr STRACE="$blocksig $strace0" run_strace -I2 -echdir ../umovestr match_diff "$LOG" "$srcdir/umovestr.expected" done