14 lines
256 B
Bash
Executable file
14 lines
256 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check how "resuming interrupted nanosleep" works.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog > /dev/null
|
|
OUT="$LOG.out"
|
|
syscalls=nanosleep,restart_syscall
|
|
run_strace -a20 -e trace=$syscalls $args > "$OUT"
|
|
match_grep "$LOG" "$OUT"
|
|
rm -f "$OUT"
|
|
|
|
exit 0
|