/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/faccessat2.test
19 строк
430 B
Dmitry V. Levin
Change my email address
31 дек 2020, 11:00
31 дек 2020, 11:00
9d9e662
Код
Авторство
О чём код?
#!/bin/sh # # Check decoding of faccessat2 syscall. # # Copyright (c) 2020 Dmitry V. Levin <ldv@strace.io> # All rights reserved. # # SPDX-License-Identifier: GPL-2.0-or-later . "${srcdir=.}/init.sh" check_prog sed run_prog > /dev/null run_strace -a27 --trace=faccessat2 "$@" $args > "$EXP" # Filter out faccessat2() calls made by ld.so and libc. sed -n '/^faccessat2(-1, NULL,/,$p' < "$LOG" > "$OUT" match_diff "$OUT" "$EXP"