• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 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 regression_147.cpp ]
27     [ compile regression_149.cpp ]
28     [ run regression_168.cpp ]
29     [ run regression_189.cpp ]
30     : <testing.launcher>valgrind
31     ;
32