Files
algorithm/minmax_macro/test/Jamfile.v2
Eric Niebler e82315742a minmax_macro v0.1
[SVN r3105]
2006-07-24 20:31:01 +00:00

22 lines
538 B
Plaintext
Executable File

# (C) Copyright 2004: Eric Niebler
# 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 rules for testing
import testing ;
project
: requirements
<library>/boost/test//boost_unit_test_framework
<link>static
<include>../../../..
;
test-suite "minmax_macro"
: [ run basic.cpp ]
[ run promotions.cpp ]
[ run rvalue_lvalue.cpp ]
[ run tricky.cpp ]
[ run eval_once.cpp ]
;