diff --git a/Project.toml b/Project.toml index 4efd4f8a..cfeb47e7 100644 --- a/Project.toml +++ b/Project.toml @@ -15,6 +15,10 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" [compat] ExprTools = "0.1" +InteractiveUtils = "1" +Libdl = "1" +Logging = "1" +UUIDs = "1" LLVM = "6.4" Scratch = "1" TimerOutputs = "0.5" diff --git a/test/Project.toml b/test/Project.toml index e32a068f..c8fa51a6 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -10,3 +10,6 @@ SPIRV_LLVM_Translator_unified_jll = "85f0d8ed-5b39-5caa-b1ae-7472de402361" SPIRV_Tools_jll = "6ac6d60f-d740-5983-97d7-a4482c0689f4" StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + +[compat] +Aqua = "0.8" diff --git a/test/native_tests.jl b/test/native_tests.jl index 93c8be94..930361ef 100644 --- a/test/native_tests.jl +++ b/test/native_tests.jl @@ -287,11 +287,11 @@ end ir = sprint(io->Native.code_llvm(io, mod.g, Tuple{Int64}; dump_module=true, kernel=true, always_inline=true)) - @test !occursin(r"^define.*julia_f_expensive"m, ir) broken=VERSION>=v"1.11.0-DEV.608" + @test !occursin(r"^define.*julia_f_expensive"m, ir) ir = sprint(io->Native.code_llvm(io, mod.h, Tuple{Int64}; dump_module=true, kernel=true, always_inline=true)) - @test !occursin(r"^define.*julia_f_expensive"m, ir) broken=VERSION>=v"1.11.0-DEV.608" + @test !occursin(r"^define.*julia_f_expensive"m, ir) ir = sprint(io->Native.code_llvm(io, mod.h, Tuple{Int64}; dump_module=true, kernel=true)) @test occursin(r"^define.*julia_f_expensive"m, ir)