mirror of
https://github.com/boostorg/algorithm.git
synced 2026-01-29 09:40:14 +01:00
22 lines
538 B
Plaintext
Executable File
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 ]
|
|
;
|