From: Szabolcs Nagy Date: Fri, 21 Feb 2014 16:14:42 +0000 (+0100) Subject: fix runtest: report if sigtimedwait fails X-Git-Url: http://nsz.repo.hu/git/?p=libc-test;a=commitdiff_plain;h=1291ba124bab6f045cfeeeed1e824f107ca54403;hp=32fca61b208425e16262e4d007dabad44bcd872b fix runtest: report if sigtimedwait fails --- diff --git a/src/common/runtest.c b/src/common/runtest.c index 28504c4..60e77ba 100644 --- a/src/common/runtest.c +++ b/src/common/runtest.c @@ -76,6 +76,8 @@ int main(int argc, char *argv[]) if (sigtimedwait(&set, 0, &(struct timespec){timeoutsec,0}) == -1) { if (errno == EAGAIN) timeout = 1; + else + t_error("%s sigtimedwait failed: %s\n", argv[0], strerror(errno)); if (kill(pid, SIGKILL) == -1) t_error("%s kill failed: %s\n", argv[0], strerror(errno)); }