Skip to content

Commit

Permalink
FIRK require more test time
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikQQY committed Nov 8, 2024
1 parent a80025b commit 84d23df
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions benchmark/Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
NonlinearSolveFirstOrder = "5959db7a-ea39-4486-b5fe-2dd0bf03d60d"
ODEInterface = "54ca160b-1b9f-5127-a996-1867f4bc2a2c"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
2 changes: 1 addition & 1 deletion benchmark/benchmarks.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using BenchmarkTools
using BoundaryValueDiffEq, OrdinaryDiffEq
using BoundaryValueDiffEq, OrdinaryDiffEq, NonlinearSolveFirstOrder

include("simple_pendulum.jl")

Expand Down
3 changes: 2 additions & 1 deletion lib/BoundaryValueDiffEqFIRK/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ const RETESTITEMS_NWORKER_THREADS = parse(Int,

ReTestItems.runtests(
BoundaryValueDiffEqFIRK; tags = (GROUP == "all" ? nothing : [Symbol(GROUP)]),
nworkers = RETESTITEMS_NWORKERS, nworker_threads = RETESTITEMS_NWORKER_THREADS)
nworkers = RETESTITEMS_NWORKERS,
nworker_threads = RETESTITEMS_NWORKER_THREADS, testitem_timeout = 120 * 60)
2 changes: 1 addition & 1 deletion test/misc/non_vector_input_tests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@testitem "Non-Vector Inputs" begin
using LinearAlgebra
using LinearAlgebra, NonlinearSolveFirstOrder

for order in (2, 3, 4, 5, 6)
s = Symbol("MIRK$(order)")
Expand Down
2 changes: 1 addition & 1 deletion test/wrappers/odeinterface_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ end

# Just test that it runs. BVPSOL only works with linearly separable BCs.
@testitem "BVPSOL" setup=[ODEInterfaceWrapperTestSetup] begin
using ODEInterface, RecursiveArrayTools
using ODEInterface, RecursiveArrayTools, NonlinearSolveFirstOrder

tpprob = TwoPointBVProblem(ex7_f!, (ex7_2pbc1!, ex7_2pbc2!), u0, tspan,
p; bcresid_prototype = (zeros(1), zeros(1)))
Expand Down

0 comments on commit 84d23df

Please sign in to comment.