# Copyright (c) 2014-2015 Hartmut Kaiser
#
# SPDX-License-Identifier: BSL-1.0
# 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)

set(tests
    all_of_range
    any_of_range
    copy_range
    copyif_range
    count_range
    countif_range
    find_end_range
    find_first_of_range
    foreach_range
    foreach_range_projection
    generate_range
    inplace_merge_range
    is_heap_range
    is_heap_until_range
    max_element_range
    merge_range
    min_element_range
    minmax_element_range
    move_range
    none_of_range
    partition_range
    partition_copy_range
    remove_range
    remove_if_range
    remove_copy_range
    remove_copy_if_range
    replace_range
    replace_copy_range
    replace_copy_if_range
    replace_if_range
    reverse_range
    reverse_copy_range
    rotate_range
    rotate_copy_range
    search_range
    searchn_range
    sort_range
    transform_range
    transform_range_binary
    transform_range_binary2
    unique_range
    unique_copy_range
   )

foreach(test ${tests})
  set(sources
      ${test}.cpp)

  set(${test}_PARAMETERS THREADS_PER_LOCALITY 4)

  source_group("Source Files" FILES ${sources})

  # add example executable
  add_hpx_executable(${test}_test
    INTERNAL_FLAGS
    SOURCES ${sources}
    ${${test}_FLAGS}
    EXCLUDE_FROM_ALL
    HPX_PREFIX ${HPX_BUILD_PREFIX}
    FOLDER "Tests/Unit/Modules/Algorithms/Container")

  add_hpx_unit_test("modules.algorithms" ${test} ${${test}_PARAMETERS})
endforeach()
