fix runtest: report if sigtimedwait fails
authorSzabolcs Nagy <nsz@port70.net>
Fri, 21 Feb 2014 16:14:42 +0000 (17:14 +0100)
committerSzabolcs Nagy <nsz@port70.net>
Fri, 21 Feb 2014 16:14:42 +0000 (17:14 +0100)
src/common/runtest.c

index 28504c4..60e77ba 100644 (file)
@@ -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));
        }