Skip to content

Commit

Permalink
Merge pull request #3048 from amitmurthy/rm_poll_test
Browse files Browse the repository at this point in the history
Commented out poll_fd and file watcher tests due to open issues 3015, 3016 and 3020
  • Loading branch information
JeffBezanson committed May 8, 2013
2 parents 4b03b9c + 42705ad commit 22e6ba5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
13 changes: 7 additions & 6 deletions test/file.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,13 @@ function test_monitor(slval)
close(fm)
end

test_timeout(100)
test_timeout(1000)
test_touch(100)
test_touch(1000)
test_monitor(1000)
test_monitor(100)
# Commented out the tests below due to issues 3015, 3016 and 3020
#test_timeout(100)
#test_timeout(1000)
#test_touch(100)
#test_touch(1000)
#test_monitor(1000)
#test_monitor(100)



Expand Down
13 changes: 5 additions & 8 deletions test/pollfd.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
@unix_only begin
require("testdefs.jl")

t0 = int64(time() * 1000)


pipe_fds = Array(Cint,2)
@test 0 == ccall(:pipe, Cint, (Ptr{Cint},), pipe_fds)

Expand Down Expand Up @@ -46,11 +43,11 @@ function test_read(slval)
@test slval <= tdiff
end


test_timeout(100)
test_timeout(1000)
test_read(100)
test_read(1000)
# Commented out the tests below due to issues 3015, 3016 and 3020
#test_timeout(100)
#test_timeout(1000)
#test_read(100)
#test_read(1000)

ccall(:close, Cint, (Cint,), pipe_fds[1])
ccall(:close, Cint, (Cint,), pipe_fds[2])
Expand Down

0 comments on commit 22e6ba5

Please sign in to comment.