@@ -47,11 +47,6 @@ function precompile_test_harness(@nospecialize(f), separate::Bool)
4747 nothing
4848end
4949
50- @testset " object_build_id" begin
51- @test Base. object_build_id ([1 ]) === nothing
52- @test Base. object_build_id (Base) == Base. module_build_id (Base)
53- end
54-
5550# method root provenance
5651
5752rootid (m:: Module ) = Base. module_build_id (Base. parentmodule (m)) % UInt64
@@ -387,9 +382,6 @@ precompile_test_harness(false) do dir
387382 @test objectid (Foo. a_vec_int) === Foo. oid_vec_int
388383 @test objectid (Foo. a_mat_int) === Foo. oid_mat_int
389384 @test Foo. oid_vec_int != = Foo. oid_mat_int
390- @test Base. object_build_id (Foo. a_vec_int) == Base. object_build_id (Foo. a_mat_int)
391- @test Base. object_build_id (Foo) == Base. module_build_id (Foo)
392- @test Base. object_build_id (Foo. a_vec_int) == Base. module_build_id (Foo)
393385 end
394386
395387 @eval begin function ccallable_test ()
@@ -1778,14 +1770,10 @@ let newinterp_path = abspath("compiler/newinterp.jl")
17781770 @test isdefined (ci, :next )
17791771 @test ci. owner === nothing
17801772 @test ci. max_world == typemax (UInt)
1781- @test Base. module_build_id (CustomAbstractInterpreterCaching) ==
1782- Base. object_build_id (ci)
17831773 ci = ci. next
17841774 @test ! isdefined (ci, :next )
17851775 @test ci. owner === cache_owner
17861776 @test ci. max_world == typemax (UInt)
1787- @test Base. module_build_id (CustomAbstractInterpreterCaching) ==
1788- Base. object_build_id (ci)
17891777 end
17901778 let m = only (methods (sum, (Vector{Float64},)))
17911779 found = false
@@ -1795,14 +1783,10 @@ let newinterp_path = abspath("compiler/newinterp.jl")
17951783 @test isdefined (ci, :next )
17961784 @test ci. owner === cache_owner
17971785 @test ci. max_world == typemax (UInt)
1798- @test Base. module_build_id (CustomAbstractInterpreterCaching) ==
1799- Base. object_build_id (ci)
18001786 ci = ci. next
18011787 @test ! isdefined (ci, :next )
18021788 @test ci. owner === nothing
18031789 @test ci. max_world == typemax (UInt)
1804- @test Base. module_build_id (CustomAbstractInterpreterCaching) ==
1805- Base. object_build_id (ci)
18061790 found = true
18071791 break
18081792 end
0 commit comments