Skip to content

Commit f318e83

Browse files
committed
Fix prefixes.
1 parent 3032390 commit f318e83

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/helpers/test.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,13 @@ module FileCheck
9696
end
9797

9898
# determine some useful prefixes for FileCheck
99-
prefixes = ["CHECK"]
99+
prefixes = ["CHECK",
100+
"JULIA$(VERSION.major).$(VERSION.minor)",
101+
"LLVM$(Base.libllvm_version.major)"]
100102
if julia_typed_pointers
101-
push!(prefixes, "OPAQUE")
102-
else
103103
push!(prefixes, "TYPED")
104+
else
105+
push!(prefixes, "OPAQUE")
104106
end
105107

106108
# now pass the collected output to FileCheck

0 commit comments

Comments
 (0)