Skip to content

Commit

Permalink
Comment out assertion on elapsed time in pollfd test
Browse files Browse the repository at this point in the history
Increasing the interval in db6d74c was not enough to fix
the random failures.

(cherry picked from commit ed7ca93)
ref #14074
  • Loading branch information
nalimilan authored and tkelman committed Nov 30, 2015
1 parent 5603ced commit 084a9ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/pollfd.jl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ function pfd_tst_timeout(idx, intvl)
@test !evt.writable
t_elapsed = toq()

@unix_only @test (intvl <= t_elapsed) # TODO: enable this test on windows when the libuv version is bumped
# Disabled since this assertion fails randomly, notably on build VMs (issue #12824)
# @unix_only @test (intvl <= t_elapsed) # TODO: enable this test on windows when the libuv version is bumped
@test (t_elapsed <= (intvl + 1))
end

Expand Down

0 comments on commit 084a9ad

Please sign in to comment.