Skip to content

Commit

Permalink
Add CircleCI targets, fix CMakeLists for algorithm unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zhekemist committed Jul 9, 2024
1 parent 1f3738a commit f3248db
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
9 changes: 9 additions & 0 deletions .circleci/tests.unit1.algorithms
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,28 @@
tests.unit.modules.algorithms.algorithms.adjacentdifference
tests.unit.modules.algorithms.algorithms.adjacentdifference_sender
tests.unit.modules.algorithms.algorithms.adjacentfind
tests.unit.modules.algorithms.algorithms.adjacentfind_sender
tests.unit.modules.algorithms.algorithms.adjacentfind_binary
tests.unit.modules.algorithms.algorithms.all_of
tests.unit.modules.algorithms.algorithms.all_of_sender
tests.unit.modules.algorithms.algorithms.any_of
tests.unit.modules.algorithms.algorithms.any_of_sender
tests.unit.modules.algorithms.algorithms.copy
tests.unit.modules.algorithms.algorithms.copy_sender
tests.unit.modules.algorithms.algorithms.copyif_random
tests.unit.modules.algorithms.algorithms.copyif_forward
tests.unit.modules.algorithms.algorithms.copyif_exception
tests.unit.modules.algorithms.algorithms.copyif_bad_alloc
tests.unit.modules.algorithms.algorithms.copyn
tests.unit.modules.algorithms.algorithms.copyn_sender
tests.unit.modules.algorithms.algorithms.count
tests.unit.modules.algorithms.algorithms.count_sender
tests.unit.modules.algorithms.algorithms.countif
tests.unit.modules.algorithms.algorithms.countif_sender
tests.unit.modules.algorithms.algorithms.destroy
tests.unit.modules.algorithms.algorithms.destroy_sender
tests.unit.modules.algorithms.algorithms.destroyn
tests.unit.modules.algorithms.algorithms.destroyn_sender
tests.unit.modules.algorithms.algorithms.ends_with
tests.unit.modules.algorithms.algorithms.equal
tests.unit.modules.algorithms.algorithms.equal_binary
Expand Down
1 change: 1 addition & 0 deletions .circleci/tests.unit2.algorithms
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
tests.unit.modules.algorithms.algorithms.move
tests.unit.modules.algorithms.algorithms.nth_element
tests.unit.modules.algorithms.algorithms.none_of
tests.unit.modules.algorithms.algorithms.none_of_sender
tests.unit.modules.algorithms.algorithms.parallel_sort
tests.unit.modules.algorithms.algorithms.partial_sort
tests.unit.modules.algorithms.algorithms.partial_sort_copy
Expand Down
12 changes: 7 additions & 5 deletions libs/core/algorithms/tests/unit/algorithms/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ set(tests
filln
# filln_sender
find
# find_sender
find_sender
findend
# findend_sender
findfirstof
Expand All @@ -71,7 +71,7 @@ set(tests
foreach
foreach_executors
foreach_prefetching
# foreach_sender
foreach_sender
foreach_scheduler
foreachn
foreachn_exception
Expand All @@ -87,7 +87,7 @@ set(tests
# for_loop_n_strided_sender
for_loop_reduction
for_loop_reduction_async
# for_loop_sender
for_loop_sender
for_loop_strided
# for_loop_strided_sender
generate
Expand Down Expand Up @@ -161,10 +161,12 @@ set(tests
# replace_copy_if_sender
reverse
reverse_copy
# reverse_sender reverse_copy_sender
reverse_sender
# reverse_copy_sender
rotate
rotate_copy
# rotate_sender rotate_copy_sender
rotate_sender
# rotate_copy_sender
search
# search_sender
searchn
Expand Down

0 comments on commit f3248db

Please sign in to comment.