Skip to content

Commit 00d1182

Browse files
committed
Try to avoid time out on Travis
1 parent fa70fc5 commit 00d1182

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/test_prob_sol.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ padd = [1.0,-4.,-2.,10.,-0.0,-0.0, 0.1]
6161
@test sol.u[end] != zeros(1)
6262
sol = @test_nowarn solve(prob,SOSRI2(),dt=0.01)
6363
@test sol.u[end] != zeros(1)
64+
6465
# Additive problems
66+
println("additive problems")
6567
prob.p .= padd;
6668
sol = @test_nowarn solve(prob,SRA(),dt=0.01)
6769
@test sol.u[end] != zeros(1)
@@ -78,6 +80,7 @@ padd = [1.0,-4.,-2.,10.,-0.0,-0.0, 0.1]
7880
# @test_nowarn solve(prob,SKenCarp(),dt=0.01) # Not working
7981

8082
# Test SROCK methods
83+
println("SROCK methods")
8184
prob.p .= pmul;
8285
sol = @test_nowarn solve(prob,SROCK1(),dt=0.01)
8386
@test sol.u[end] != zeros(1)
@@ -101,6 +104,7 @@ padd = [1.0,-4.,-2.,10.,-0.0,-0.0, 0.1]
101104
end
102105

103106
# Test Implicit methods
107+
println("implicit methods")
104108
sol = @test_nowarn solve(prob,ImplicitEM(),dt=0.01)
105109
@test sol.u[end] != zeros(1)
106110
sol = @test_nowarn solve(prob,ImplicitEM(symplectic=true, theta = 1/2),dt=0.01)

0 commit comments

Comments
 (0)