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()
99
99
end
100
100
end
101
101
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
+
102
109
# ##########
103
110
# Modules #
104
111
# ##########
Original file line number Diff line number Diff line change @@ -229,10 +229,10 @@ using PyCall
229
229
let np = pyimport (" numpy" )
230
230
@test @interpret (PyCall. pystring_query (np. zeros)) === Union{}
231
231
end
232
- # Issue #354 (partial fix)
232
+ # Issue #354
233
233
using HTTP
234
234
headers = 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
236
236
237
237
# "correct" line numbers
238
238
defline = @__LINE__ () + 1
You can’t perform that action at this time.
0 commit comments