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.
trimming
1 parent f362f47 commit 7df2a69Copy full SHA for 7df2a69
test/trimming/Project.toml
@@ -8,3 +8,6 @@ Zstd_jll = "3161d3a3-bdf6-5164-811a-617609db77b4"
8
9
[sources]
10
Zstd_jll = {path = "Zstd_jll"}
11
+
12
+[compat]
13
+JSON = "1"
test/trimming/trimming.jl
@@ -35,7 +35,7 @@ let exe_suffix = splitext(Base.julia_exename())[2]
35
str = read(joinpath(bindir, "bindinginfo_libsimple.json"), String)
36
37
# The log should parse as valid JSON
38
- abi = JSON.Parser.parse(str)
+ abi = JSON.parse(str)
39
40
# `copyto_and_sum` should have been exported
41
@test any(Bool[func["symbol"] == "copyto_and_sum" for func in abi["functions"]])
0 commit comments