blob: 1915a325921f089c4f98acd762d0816acad88814 [file] [log] [blame]
Brian Silverman7c33ab22018-08-04 17:14:51 -07001# Copyright 2012 Karsten Ahnert
2# Copyright 2012 Mario Mulansky
3# Distributed under the Boost Software License, Version 1.0.
4# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6# bring in rules for testing
7
8
9import testing ;
10
11use-project boost : $(BOOST_ROOT) ;
12
13project
14 : requirements
15 <library>/boost/test//boost_unit_test_framework
16 <define>BOOST_ALL_NO_LIB=1
17 <include>../../include
18 <link>static
19 <toolset>clang:<cxxflags>-Wno-unused-variable
20
21# <cxxflags>-D_SCL_SECURE_NO_WARNINGS
22 ;
23
24test-suite "odeint"
25 :
26 [ run runge_kutta.cpp ]
27 [ run symplectic.cpp ]
28 [ run rosenbrock.cpp ]
29 [ run adams_bashforth.cpp ]
30 [ run adams_bashforth_moulton.cpp ]
31 [ run abm_time_dependent.cpp ]
32 [ run order_quadrature_formula.cpp ]
33 [ run velocity_verlet.cpp ]
34 : <testing.launcher>valgrind
35 ;