blob: 0a02bccff08bafcc5801a7d6b59552155e64f405 [file] [log] [blame]
Brian Silverman7c33ab22018-08-04 17:14:51 -07001# 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