• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2012 Karsten Ahnert
2# Copyright 2012-2013 Mario Mulansky
3# Copyright 2013 Pascal Germroth
4# Distributed under the Boost Software License, Version 1.0.
5# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7import testing ;
8import mpi : mpi-test ;
9
10use-project boost : $(BOOST_ROOT) ;
11
12project
13    : requirements
14      <library>/boost/test//boost_unit_test_framework
15      <library>/boost//mpi
16      <link>static
17      <define>BOOST_ALL_NO_LIB=1
18    ;
19
20# mpi-test name : source : req : np=1 2 3 4 7 8 13 17
21test-suite "odeint-mpi"
22    :
23    [ mpi-test split_test ]
24    [ mpi-test state_test ]
25    [ mpi-test norm_test ]
26    ;
27
28