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 720a1ea commit d80cec4Copy full SHA for d80cec4
test/relocatedepot.jl
@@ -137,8 +137,10 @@ if !test_relocated_depot
137
cachefiles = Base.find_all_in_cache_path(pkg)
138
rm.(cachefiles, force=true)
139
@test Base.isprecompiled(pkg) == false
140
+ @test Base.isrelocatable(pkg) == false # because not precompiled
141
Base.require(pkg)
142
@test Base.isprecompiled(pkg, ignore_loaded=true) == true
143
+ @test Base.isrelocatable(pkg) == false
144
end
145
146
@@ -285,6 +287,7 @@ else
285
287
pkg = Base.identify_package(pkgname)
286
288
# precompiled but not relocatable
289
@test Base.isprecompiled(pkg) == true
290
291
292
293
0 commit comments