Skip to content

Commit

Permalink
mark a flaky Sockets test as broken (JuliaLang#55030)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-netto committed Jul 4, 2024
1 parent c388382 commit 8f1f223
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stdlib/Sockets/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ end
end
@test getnameinfo(ip"192.0.2.1") == "192.0.2.1"
@test getnameinfo(ip"198.51.100.1") == "198.51.100.1"
@test getnameinfo(ip"203.0.113.1") == "203.0.113.1"
# Temporarily broken due to a DNS issue. See https://github.com/JuliaLang/julia/issues/55008
@test_skip getnameinfo(ip"203.0.113.1") == "203.0.113.1"
@test getnameinfo(ip"0.1.1.1") == "0.1.1.1"
@test getnameinfo(ip"::ffff:0.1.1.1") == "::ffff:0.1.1.1"
@test getnameinfo(ip"::ffff:192.0.2.1") == "::ffff:192.0.2.1"
Expand Down

0 comments on commit 8f1f223

Please sign in to comment.