Skip to content

Commit 7f83a16

Browse files
Don't run TestFilter under Julia 0.6 since aliasElimination=true does not work under 0.6
1 parent ae77b9d commit 7f83a16

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/runsimulationtests.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ end
1919
include("models/TestEquations.jl")
2020

2121
include("models/TestElectrical.jl")
22-
include("models/TestFilter.jl")
22+
@static if VERSION < v"0.7.0-DEV.2005"
23+
# Don't run TestFilter since aliasElimination=true does not work under 0.6
24+
else
25+
include("models/TestFilter.jl")
26+
end
2327
include("models/TestArrayOfComponents.jl")
2428
include("models/TestConditionalComponents.jl")
2529
include("models/TestConditionalEquations.jl")

0 commit comments

Comments
 (0)