mirror of
https://github.com/boostorg/random.git
synced 2026-01-19 16:32:16 +00:00
39 lines
1004 B
Plaintext
39 lines
1004 B
Plaintext
# Boost parallel random Library test Jamfile
|
|
|
|
# (C) Copyright 2006 Mattthias Troyer.
|
|
# Use, modification, and distribution are subject to 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)
|
|
#
|
|
|
|
subproject libs/random/test ;
|
|
|
|
# bring in rules for testing
|
|
import testing ;
|
|
|
|
# Make tests run by default.
|
|
DEPENDS all : test ;
|
|
|
|
# look in BOOST_ROOT for sources first, just in this Jamfile
|
|
local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
|
|
|
|
test-suite random_parallel
|
|
:
|
|
[ run buffered_generator_example.cpp
|
|
<lib>../build/boost_random
|
|
: : : : buffered_generator_example ]
|
|
|
|
[ run buffered_uniform_01_example.cpp
|
|
<lib>../build/boost_random
|
|
: : : : buffered_uniform_01_example ]
|
|
|
|
[ run buffered_examples.cpp
|
|
<lib>../build/boost_random
|
|
: : : : buffered_examples ]
|
|
|
|
[ run multivariate_normal_example.cpp
|
|
<lib>../build/boost_random
|
|
: : : : multivariate_normal_example ]
|
|
|
|
;
|