mirror of
https://github.com/boostorg/math.git
synced 2026-02-15 01:02:14 +00:00
Adjust tests to use always use static linking to Boost.Test, since linking to the shared version requires test changes. Patch from Juergen Hunold. [SVN r35989]
32 lines
945 B
Plaintext
32 lines
945 B
Plaintext
# Copyright Daryle Walker, Hubert Holin and John Maddock 2006
|
|
# 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.
|
|
|
|
# bring in the rules for testing
|
|
import testing ;
|
|
|
|
run ../test/common_factor_test.cpp
|
|
../../test/build//boost_unit_test_framework/<link>static ;
|
|
|
|
run ../octonion/octonion_test.cpp
|
|
../../test/build//boost_unit_test_framework/<link>static ;
|
|
|
|
run ../quaternion/quaternion_test.cpp
|
|
../../test/build//boost_unit_test_framework/<link>static ;
|
|
|
|
run ../special_functions/special_functions_test.cpp
|
|
../../test/build//boost_unit_test_framework/<link>static ;
|
|
|
|
run ../quaternion/quaternion_mult_incl_test.cpp
|
|
../quaternion/quaternion_mi1.cpp
|
|
../quaternion/quaternion_mi2.cpp
|
|
../../test/build//boost_unit_test_framework/<link>static ;
|
|
|
|
run complex_test.cpp ;
|
|
run hypot_test.cpp ;
|
|
run log1p_expm1_test.cpp ;
|
|
|
|
|
|
|