Brian Silverman | 7c33ab2 | 2018-08-04 17:14:51 -0700 | [diff] [blame^] | 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 | |
| 7 | import testing ; |
| 8 | import mpi : mpi-test ; |
| 9 | |
| 10 | use-project boost : $(BOOST_ROOT) ; |
| 11 | |
| 12 | project |
| 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 |
| 21 | test-suite "odeint-mpi" |
| 22 | : |
| 23 | [ mpi-test split_test ] |
| 24 | [ mpi-test state_test ] |
| 25 | [ mpi-test norm_test ] |
| 26 | ; |
| 27 | |