2
0
mirror of https://github.com/boostorg/mpi.git synced 2026-01-31 08:22:12 +00:00
Files
mpi/test/Jamfile.v2
Matthias Troyer 459dfc7e98 Fixed pointer serialization in Boost.MPI
[SVN r65997]
2010-10-16 00:49:36 +00:00

38 lines
1.1 KiB
Plaintext

# Support for the Message Passing Interface (MPI)
#
# (C) Copyright 2005, 2006 Trustees of Indiana University
# (C) Copyright 2005 Douglas Gregor
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
#
# Authors: Douglas Gregor
# Andrew Lumsdaine
use-project /boost/mpi : ../build ;
project /boost/mpi/test ;
import mpi : mpi-test ;
if [ mpi.configured ]
{
test-suite mpi
:
[ mpi-test all_gather_test ]
[ mpi-test all_reduce_test ]
[ mpi-test all_to_all_test ]
[ mpi-test broadcast_test : : : 2 17 ]
[ mpi-test gather_test ]
[ mpi-test is_mpi_op_test : : : 1 ]
# Note: Microsoft MPI fails nonblocking_test on 1 processor
[ mpi-test nonblocking_test ]
[ mpi-test reduce_test ]
[ mpi-test ring_test : : : 2 3 4 7 8 13 17 ]
[ mpi-test scan_test ]
[ mpi-test scatter_test ]
# Note: Microsoft MPI fails all skeleton-content tests
[ mpi-test skeleton_content_test : : : 2 3 4 7 8 13 17 ]
[ mpi-test graph_topology_test : : : 2 7 13 ]
[ mpi-test pointer_test : : : 2 ]
;
}