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

Removed time-dependent test from fdset unittests.

fixes #82
parent 432027f7
No related branches found
No related tags found
No related merge requests found
......@@ -125,8 +125,7 @@ static int fdset_tests_run(int argc, char *argv[])
gettimeofday(&te, 0);
size_t diff = timeval_diff(&ts, &te);
ok(nfds > 0 && diff > 99 && diff < 10000,
"fdset: poll returned %d events in %zu ms", nfds, diff);
ok(nfds > 0, "fdset: poll returned %d events in %zu ms", nfds, diff);
/* 5. Prepare event set. */
ok(set.pfd[0].revents & POLLIN, "fdset: pipe is active");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment