X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/18fceae399301f4a69ca3c92f85a1657d46dfd25..485fa064f8388272fe00ebfd29e4babf6dfed019:/test/runpty.c diff --git a/test/runpty.c b/test/runpty.c index 2645d679..1585df94 100644 --- a/test/runpty.c +++ b/test/runpty.c @@ -24,7 +24,7 @@ int main(int argc, char *argv[]) { int master_in, master_out, slave, cc, status; - time_t starttime; + time_t starttime, now; const char *slavename; pid_t child; unsigned char readbuf[1024]; @@ -169,8 +169,10 @@ main(int argc, char *argv[]) } } - if (time(NULL) >= starttime + COMMAND_TIMEOUT) { - fprintf(stderr, "Command execution timed out\n"); + now = time(NULL); + if (now >= starttime + COMMAND_TIMEOUT) { + fprintf(stderr, "Command execution timed out: %ld to %ld: %d\n", + starttime, now, cc); break; } }