Implement the C++17 new algorithms

This commit is contained in:
Marshall Clow
2017-06-27 16:43:17 -07:00
parent d6b7f3da90
commit 334737eebe
15 changed files with 1367 additions and 4 deletions

View File

@ -12,7 +12,7 @@ import testing ;
alias unit_test_framework
: # sources
/boost//unit_test_framework
;
;
{
@ -31,13 +31,13 @@ alias unit_test_framework
[ run clamp_test.cpp unit_test_framework : : : : clamp_test ]
[ run power_test.cpp unit_test_framework : : : : power_test ]
[ compile-fail power_fail1.cpp : : : : ]
# Cxx11 tests
[ run all_of_test.cpp unit_test_framework : : : : all_of_test ]
[ run any_of_test.cpp unit_test_framework : : : : any_of_test ]
[ run none_of_test.cpp unit_test_framework : : : : none_of_test ]
[ run one_of_test.cpp unit_test_framework : : : : one_of_test ]
[ run ordered_test.cpp unit_test_framework : : : : ordered_test ]
[ run find_if_not_test1.cpp unit_test_framework : : : : find_if_not_test1 ]
[ run copy_if_test1.cpp unit_test_framework : : : : copy_if_test1 ]
@ -53,6 +53,16 @@ alias unit_test_framework
[ run equal_test.cpp unit_test_framework : : : : equal_test ]
[ run mismatch_test.cpp unit_test_framework : : : : mismatch_test ]
# Cxx17 tests
[ run for_each_n_test.cpp unit_test_framework : : : : for_each_n_test ]
[ run reduce_test.cpp unit_test_framework : : : : reduce_test ]
[ run transform_reduce_test.cpp unit_test_framework : : : : transform_reduce_test ]
[ run inclusive_scan_test.cpp unit_test_framework : : : : inclusive_scan_test ]
[ run exclusive_scan_test.cpp unit_test_framework : : : : exclusive_scan_test ]
[ run transform_inclusive_scan_test.cpp unit_test_framework : : : : transform_inclusive_scan_test ]
[ run transform_exclusive_scan_test.cpp unit_test_framework : : : : transform_exclusive_scan_test ]
# Maybe GCD and LCM as well
# Hex tests
[ run hex_test1.cpp unit_test_framework : : : : hex_test1 ]
[ run hex_test2.cpp unit_test_framework : : : : hex_test2 ]
@ -70,7 +80,7 @@ alias unit_test_framework
# Is_palindrome tests
[ run is_palindrome_test.cpp unit_test_framework : : : : is_palindrome_test ]
# Is_partitioned_until tests
[ run is_partitioned_until_test.cpp unit_test_framework : : : : is_partitioned_until_test ]
;