Dmitry V. Levin
9649ac1c8b
* tests/rt_sigsuspend.c: New file. * tests/rt_sigsuspend.test: New test. * tests/.gitignore: Add rt_sigsuspend. * tests/Makefile.am (check_PROGRAMS): Likewise. (TESTS): Add rt_sigsuspend.test.
12 lines
212 B
Bash
Executable File
12 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check rt_sigsuspend syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog > /dev/null
|
|
OUT="$LOG.out"
|
|
run_strace -a20 -ert_sigsuspend -esignal=none $args > "$OUT"
|
|
match_diff "$LOG" "$OUT"
|
|
rm -f "$OUT"
|