Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix test Jamfile.v2 to be location independent. #38

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 16 additions & 17 deletions test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

project
:
source-location $(BOOST_ROOT)
:
requirements
# Enable dynamic rounding on Tru64 (Alpha CPU).
Expand All @@ -24,25 +23,25 @@ import testing ;

{
test-suite numeric/interval :
[ compile libs/numeric/interval/test/integer.cpp ]
[ compile integer.cpp ]

[ run libs/numeric/interval/test/add.cpp ]
[ run libs/numeric/interval/test/det.cpp ]
[ run libs/numeric/interval/test/fmod.cpp ]
[ run libs/numeric/interval/test/msvc_x64_flags.cpp : : : <build>no <toolset>msvc:<build>yes ]
[ run libs/numeric/interval/test/mul.cpp ]
[ run libs/numeric/interval/test/overflow.cpp ]
[ run libs/numeric/interval/test/pi.cpp ]
[ run libs/numeric/interval/test/pow.cpp ]
[ run add.cpp ]
[ run det.cpp ]
[ run fmod.cpp ]
[ run msvc_x64_flags.cpp : : : <build>no <toolset>msvc:<build>yes ]
[ run mul.cpp ]
[ run overflow.cpp ]
[ run pi.cpp ]
[ run pow.cpp ]

[ run libs/numeric/interval/test/cmp.cpp ]
[ run libs/numeric/interval/test/cmp_exn.cpp ]
[ run libs/numeric/interval/test/cmp_exp.cpp ]
[ run libs/numeric/interval/test/cmp_lex.cpp ]
[ run libs/numeric/interval/test/cmp_set.cpp ]
[ run cmp.cpp ]
[ run cmp_exn.cpp ]
[ run cmp_exp.cpp ]
[ run cmp_lex.cpp ]
[ run cmp_set.cpp ]
# https://github.com/boostorg/interval/issues/15
# [ run libs/numeric/interval/test/cmp_tribool.cpp ]
[ run libs/numeric/interval/test/test_float.cpp
# [ run cmp_tribool.cpp ]
[ run test_float.cpp
: : : <build>yes <toolset>msvc-10.0:<build>no ]
# https://github.com/boostorg/interval/issues/17
;
Expand Down
Loading