-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathruntests.jl
More file actions
38 lines (32 loc) · 1.53 KB
/
runtests.jl
File metadata and controls
38 lines (32 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using Pkg
using SafeTestsets
const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
function activate_gpu_env()
Pkg.activate(joinpath(@__DIR__, "gpu"))
return Pkg.instantiate()
end
# Run GPU tests
if TEST_GROUP == "GPU"
activate_gpu_env()
@time @safetestset "BDF Solvers GPU" include("gpu/bdf_solvers.jl")
end
# Run functional tests
if TEST_GROUP == "Core" || TEST_GROUP == "ALL"
@time @safetestset "DAE Convergence Tests" include("dae_convergence_tests.jl")
@time @safetestset "DAE AD Tests" include("dae_ad_tests.jl")
@time @safetestset "DAE Event Tests" include("dae_event.jl")
@time @safetestset "DAE u_modified! Tests" include("dae_u_modified_tests.jl")
@time @safetestset "DAE Initialization Tests" include("dae_initialization_tests.jl")
@time @safetestset "BDF Inference Tests" include("inference_tests.jl")
@time @safetestset "BDF Convergence Tests" include("bdf_convergence_tests.jl")
@time @safetestset "BDF Regression Tests" include("bdf_regression_tests.jl")
@time @safetestset "CVHin InitDt Tests" include("stiff_initdt_tests.jl")
end
# Run QA tests (AllocCheck, JET, Aqua) - skip on pre-release Julia
# Allocation tests must run before JET because JET's static analysis
# invalidates compiled code and causes spurious runtime allocations.
if (TEST_GROUP == "QA" || TEST_GROUP == "ALL") && isempty(VERSION.prerelease)
@time @safetestset "Allocation Tests" include("allocation_tests.jl")
@time @safetestset "JET Tests" include("jet.jl")
@time @safetestset "Aqua" include("qa.jl")
end