1#!/bin/sh 2 3# Check how "resuming interrupted nanosleep" works. 4 5. "${srcdir=.}/init.sh" 6 7run_prog > /dev/null 8OUT="$LOG.out" 9syscalls=nanosleep,restart_syscall 10run_strace -a20 -e trace=$syscalls $args > "$OUT" 11match_grep "$LOG" "$OUT" 12rm -f "$OUT" 13 14exit 0 15