Skip to content

Commit cb392b4

Browse files
committed
fixup! Support external linkage in "sysimages"
1 parent 6a55bf9 commit cb392b4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/precompile.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
original_depot_path = copy(Base.DEPOT_PATH)
4+
original_load_path = copy(Base.LOAD_PATH)
45

56
using Test, Distributed, Random
67

@@ -1749,4 +1750,5 @@ end
17491750

17501751
empty!(Base.DEPOT_PATH)
17511752
append!(Base.DEPOT_PATH, original_depot_path)
1752-
1753+
empty!(Base.LOAD_PATH)
1754+
append!(Base.LOAD_PATH, original_load_path)

0 commit comments

Comments
 (0)