Skip to content
Snippets Groups Projects
Commit 34be0266 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Hard time limit for fdset tests set to 60s.

refs #82
parent 524a5c1e
Branches
Tags
No related merge requests found
......@@ -121,7 +121,7 @@ static int fdset_tests_run(int argc, char *argv[])
pthread_create(&t, 0, thr_action, &fds[1]);
/* 4. Watch fdset. */
int nfds = poll(set.pfd, set.n, 2000);
int nfds = poll(set.pfd, set.n, 60 * 1000);
gettimeofday(&te, 0);
size_t diff = timeval_diff(&ts, &te);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment