We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e7ed1d commit 8073f1cCopy full SHA for 8073f1c
1 file changed
test/precompile.jl
@@ -1123,9 +1123,9 @@ precompile_test_harness("code caching") do dir
1123
if invalidations[idxv-1].def.def.name === :getproperty
1124
idxv = findnext(==("verify_methods"), invalidations, idxv+1)
1125
end
1126
- @test invalidations[idxv-1].def.def.name === :flbi
1127
- idxv = findnext(==("verify_methods"), invalidations, idxv+1)
1128
- @test invalidations[idxv-1].def.def.name === :useflbi
+ idxv = findnext(==(invalidations[idxv-1]), invalidations, idxv+1)
+ @test invalidations[idxv-1] == "verify_methods"
+ @test invalidations[idxv-2].def.def.name === :useflbi
1129
1130
m = only(methods(MB.map_nbits))
1131
@test !hasvalid(m.specializations::Core.MethodInstance, world+1) # insert_backedges invalidations also trigger their backedges
0 commit comments