File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,13 @@ function set_compiled_methods()
9999 end
100100 end
101101
102+ # Does an atomic operation via llvmcall (this fixes #354)
103+ if isdefined (Base, :load_state_acquire )
104+ for m in methods (Base. load_state_acquire)
105+ push! (compiled_methods, m)
106+ end
107+ end
108+
102109 # ##########
103110 # Modules #
104111 # ##########
Original file line number Diff line number Diff line change @@ -229,10 +229,10 @@ using PyCall
229229let np = pyimport (" numpy" )
230230 @test @interpret (PyCall. pystring_query (np. zeros)) === Union{}
231231end
232- # Issue #354 (partial fix)
232+ # Issue #354
233233using HTTP
234234headers = Dict (" User-Agent" => " Debugger.jl" )
235- @test_broken @interpret (HTTP. request (" GET" , " https://api.github.com/" , headers))
235+ @test @interpret (HTTP. request (" GET" , " https://api.github.com/" , headers)) isa HTTP . Messages . Response
236236
237237# "correct" line numbers
238238defline = @__LINE__ () + 1
You can’t perform that action at this time.
0 commit comments