-
-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6476 from m-diers/fixing_binary_filter_test_targe…
…t_names Fixing binary filter test target names
- Loading branch information
Showing
9 changed files
with
64 additions
and
39 deletions.
There are no files selected for viewing
29 changes: 18 additions & 11 deletions
29
components/parcel_plugins/binary_filter/bzip2/tests/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,48 @@ | ||
# Copyright (c) 2019-2022 The STE||AR-Group | ||
# Copyright (c) 2019-2024 The STE||AR-Group | ||
# | ||
# 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) | ||
|
||
if(HPX_WITH_TESTS_UNIT) | ||
add_hpx_pseudo_target(tests.unit.components.parcel_plugins.coalescing) | ||
add_hpx_pseudo_target( | ||
tests.unit.components.parcel_plugins.binary_filter.bzip2 | ||
) | ||
add_hpx_pseudo_dependencies( | ||
tests.unit.components tests.unit.components.parcel_plugins.coalescing | ||
tests.unit.components | ||
tests.unit.components.parcel_plugins.binary_filter.bzip2 | ||
) | ||
add_subdirectory(unit) | ||
endif() | ||
|
||
if(HPX_WITH_TESTS_REGRESSIONS) | ||
add_hpx_pseudo_target(tests.regressions.components.parcel_plugins.coalescing) | ||
add_hpx_pseudo_target( | ||
tests.regressions.components.parcel_plugins.binary_filter.bzip2 | ||
) | ||
add_hpx_pseudo_dependencies( | ||
tests.regressions.components | ||
tests.regressions.components.parcel_plugins.coalescing | ||
tests.regressions.components.parcel_plugins.binary_filter.bzip2 | ||
) | ||
add_subdirectory(regressions) | ||
endif() | ||
|
||
if(HPX_WITH_TESTS_BENCHMARKS) | ||
add_hpx_pseudo_target(tests.performance.components.parcel_plugins.coalescing) | ||
add_hpx_pseudo_target( | ||
tests.performance.components.parcel_plugins.binary_filter.bzip2 | ||
) | ||
add_hpx_pseudo_dependencies( | ||
tests.performance.components | ||
tests.performance.components.parcel_plugins.coalescing | ||
tests.performance.components.parcel_plugins.binary_filter.bzip2 | ||
) | ||
add_subdirectory(performance) | ||
endif() | ||
|
||
if(HPX_WITH_TESTS_HEADERS) | ||
add_hpx_header_tests( | ||
"components.parcel_plugins.coalescing" | ||
HEADERS ${parcel_coalescing_headers} | ||
"components.parcel_plugins.binary_filter.bzip2" | ||
HEADERS ${parcel_binary_filter_headers} | ||
HEADER_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/include" | ||
COMPONENT_DEPENDENCIES parcel_coalescing | ||
EXCLUDE hpx/include/parcel_coalescing.hpp | ||
COMPONENT_DEPENDENCIES parcel_binary_filter | ||
EXCLUDE hpx/include/compression_bzip2.hpp | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 18 additions & 11 deletions
29
components/parcel_plugins/binary_filter/snappy/tests/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,48 @@ | ||
# Copyright (c) 2019-2022 The STE||AR-Group | ||
# Copyright (c) 2019-2024 The STE||AR-Group | ||
# | ||
# 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) | ||
|
||
if(HPX_WITH_TESTS_UNIT) | ||
add_hpx_pseudo_target(tests.unit.components.parcel_plugins.coalescing) | ||
add_hpx_pseudo_target( | ||
tests.unit.components.parcel_plugins.binary_filter.snappy | ||
) | ||
add_hpx_pseudo_dependencies( | ||
tests.unit.components tests.unit.components.parcel_plugins.coalescing | ||
tests.unit.components | ||
tests.unit.components.parcel_plugins.binary_filter.snappy | ||
) | ||
add_subdirectory(unit) | ||
endif() | ||
|
||
if(HPX_WITH_TESTS_REGRESSIONS) | ||
add_hpx_pseudo_target(tests.regressions.components.parcel_plugins.coalescing) | ||
add_hpx_pseudo_target( | ||
tests.regressions.components.parcel_plugins.binary_filter.snappy | ||
) | ||
add_hpx_pseudo_dependencies( | ||
tests.regressions.components | ||
tests.regressions.components.parcel_plugins.coalescing | ||
tests.regressions.components.parcel_plugins.binary_filter.snappy | ||
) | ||
add_subdirectory(regressions) | ||
endif() | ||
|
||
if(HPX_WITH_TESTS_BENCHMARKS) | ||
add_hpx_pseudo_target(tests.performance.components.parcel_plugins.coalescing) | ||
add_hpx_pseudo_target( | ||
tests.performance.components.parcel_plugins.binary_filter.snappy | ||
) | ||
add_hpx_pseudo_dependencies( | ||
tests.performance.components | ||
tests.performance.components.parcel_plugins.coalescing | ||
tests.performance.components.parcel_plugins.binary_filter.snappy | ||
) | ||
add_subdirectory(performance) | ||
endif() | ||
|
||
if(HPX_WITH_TESTS_HEADERS) | ||
add_hpx_header_tests( | ||
"components.parcel_plugins.coalescing" | ||
HEADERS ${parcel_coalescing_headers} | ||
"components.parcel_plugins.binary_filter.snappy" | ||
HEADERS ${parcel_binary_filter_headers} | ||
HEADER_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/include" | ||
COMPONENT_DEPENDENCIES parcel_coalescing | ||
EXCLUDE hpx/include/parcel_coalescing.hpp | ||
COMPONENT_DEPENDENCIES parcel_binary_filter | ||
EXCLUDE hpx/include/compression_snappy.hpp | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 16 additions & 11 deletions
27
components/parcel_plugins/binary_filter/zlib/tests/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,46 @@ | ||
# Copyright (c) 2019-2022 The STE||AR-Group | ||
# Copyright (c) 2019-2024 The STE||AR-Group | ||
# | ||
# 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) | ||
|
||
if(HPX_WITH_TESTS_UNIT) | ||
add_hpx_pseudo_target(tests.unit.components.parcel_plugins.coalescing) | ||
add_hpx_pseudo_target(tests.unit.components.parcel_plugins.binary_filter.zlib) | ||
add_hpx_pseudo_dependencies( | ||
tests.unit.components tests.unit.components.parcel_plugins.coalescing | ||
tests.unit.components | ||
tests.unit.components.parcel_plugins.binary_filter.zlib | ||
) | ||
add_subdirectory(unit) | ||
endif() | ||
|
||
if(HPX_WITH_TESTS_REGRESSIONS) | ||
add_hpx_pseudo_target(tests.regressions.components.parcel_plugins.coalescing) | ||
add_hpx_pseudo_target( | ||
tests.regressions.components.parcel_plugins.binary_filter.zlib | ||
) | ||
add_hpx_pseudo_dependencies( | ||
tests.regressions.components | ||
tests.regressions.components.parcel_plugins.coalescing | ||
tests.regressions.components.parcel_plugins.binary_filter.zlib | ||
) | ||
add_subdirectory(regressions) | ||
endif() | ||
|
||
if(HPX_WITH_TESTS_BENCHMARKS) | ||
add_hpx_pseudo_target(tests.performance.components.parcel_plugins.coalescing) | ||
add_hpx_pseudo_target( | ||
tests.performance.components.parcel_plugins.binary_filter.zlib | ||
) | ||
add_hpx_pseudo_dependencies( | ||
tests.performance.components | ||
tests.performance.components.parcel_plugins.coalescing | ||
tests.performance.components.parcel_plugins.binary_filter.zlib | ||
) | ||
add_subdirectory(performance) | ||
endif() | ||
|
||
if(HPX_WITH_TESTS_HEADERS) | ||
add_hpx_header_tests( | ||
"components.parcel_plugins.coalescing" | ||
HEADERS ${parcel_coalescing_headers} | ||
"components.parcel_plugins.binary_filter.zlib" | ||
HEADERS ${parcel_binary_filter_headers} | ||
HEADER_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/include" | ||
COMPONENT_DEPENDENCIES parcel_coalescing | ||
EXCLUDE hpx/include/parcel_coalescing.hpp | ||
COMPONENT_DEPENDENCIES parcel_binary_filter | ||
EXCLUDE hpx/include/compression_zlib.hpp | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters