From 1291ba124bab6f045cfeeeed1e824f107ca54403 Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Fri, 21 Feb 2014 17:14:42 +0100 Subject: [PATCH 1/1] fix runtest: report if sigtimedwait fails --- src/common/runtest.c | 2 ++ 1 file changed, 2 insertions(+) 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)); } -- 2.20.1