mirror of
https://github.com/boostorg/algorithm.git
synced 2025-06-30 14:31:05 +02:00
28 lines
906 B
Plaintext
28 lines
906 B
Plaintext
![]() |
# Boost algorithm library test suite Jamfile ----------------------------
|
||
|
#
|
||
|
# Copyright Marshall Clow 2010-2012. Use, modification and
|
||
|
# distribution is 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)
|
||
|
#
|
||
|
# See http://www.boost.org for updates, documentation, and revision history.
|
||
|
|
||
|
import testing ;
|
||
|
|
||
|
{
|
||
|
test-suite algorithm:
|
||
|
# Search tests
|
||
|
: [ run empty_search_test.cpp : : : : empty_search_test ]
|
||
|
[ run search_test1.cpp : : : : search_test1 ]
|
||
|
[ run search_test2.cpp : : : : search_test2 ]
|
||
|
[ run search_test3.cpp : : : : search_test3 ]
|
||
|
[ compile-fail search_fail1.cpp : : : : ]
|
||
|
[ compile-fail search_fail2.cpp : : : : ]
|
||
|
[ compile-fail search_fail3.cpp : : : : ]
|
||
|
|
||
|
# Clamp tests
|
||
|
[ run clamp_test.cpp : : : : clamp_test ]
|
||
|
;
|
||
|
}
|
||
|
|