Skip to content

Commit 1d58bff

Browse files
authored
Merge pull request #537 from JuliaGPU/tb/aqua
Fix and bound Aqua tests.
2 parents 21ca075 + 331dd70 commit 1d58bff

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Project.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
1515

1616
[compat]
1717
ExprTools = "0.1"
18+
InteractiveUtils = "1"
19+
Libdl = "1"
20+
Logging = "1"
21+
UUIDs = "1"
1822
LLVM = "6.4"
1923
Scratch = "1"
2024
TimerOutputs = "0.5"

test/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ SPIRV_LLVM_Translator_unified_jll = "85f0d8ed-5b39-5caa-b1ae-7472de402361"
1010
SPIRV_Tools_jll = "6ac6d60f-d740-5983-97d7-a4482c0689f4"
1111
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1212
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
13+
14+
[compat]
15+
Aqua = "0.8"

test/native_tests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,11 +287,11 @@ end
287287

288288
ir = sprint(io->Native.code_llvm(io, mod.g, Tuple{Int64}; dump_module=true, kernel=true,
289289
always_inline=true))
290-
@test !occursin(r"^define.*julia_f_expensive"m, ir) broken=VERSION>=v"1.11.0-DEV.608"
290+
@test !occursin(r"^define.*julia_f_expensive"m, ir)
291291

292292
ir = sprint(io->Native.code_llvm(io, mod.h, Tuple{Int64}; dump_module=true, kernel=true,
293293
always_inline=true))
294-
@test !occursin(r"^define.*julia_f_expensive"m, ir) broken=VERSION>=v"1.11.0-DEV.608"
294+
@test !occursin(r"^define.*julia_f_expensive"m, ir)
295295

296296
ir = sprint(io->Native.code_llvm(io, mod.h, Tuple{Int64}; dump_module=true, kernel=true))
297297
@test occursin(r"^define.*julia_f_expensive"m, ir)

0 commit comments

Comments
 (0)