We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3032390 commit f318e83Copy full SHA for f318e83
1 file changed
test/helpers/test.jl
@@ -96,11 +96,13 @@ module FileCheck
96
end
97
98
# determine some useful prefixes for FileCheck
99
- prefixes = ["CHECK"]
+ prefixes = ["CHECK",
100
+ "JULIA$(VERSION.major).$(VERSION.minor)",
101
+ "LLVM$(Base.libllvm_version.major)"]
102
if julia_typed_pointers
- push!(prefixes, "OPAQUE")
- else
103
push!(prefixes, "TYPED")
104
+ else
105
+ push!(prefixes, "OPAQUE")
106
107
108
# now pass the collected output to FileCheck
0 commit comments