From 335baabf9cd48519987692fb8c10be8c7ab63529 Mon Sep 17 00:00:00 2001 From: Dirk Thomas Date: Thu, 16 Apr 2020 10:55:34 -0700 Subject: [PATCH] add CMake function ament_add_test_label() Signed-off-by: Dirk Thomas --- .../ament_cmake_test-extras.cmake | 1 + .../cmake/ament_add_test_label.cmake | 29 +++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 ament_cmake_test/cmake/ament_add_test_label.cmake diff --git a/ament_cmake_test/ament_cmake_test-extras.cmake b/ament_cmake_test/ament_cmake_test-extras.cmake index 81199172..0b3a9263 100644 --- a/ament_cmake_test/ament_cmake_test-extras.cmake +++ b/ament_cmake_test/ament_cmake_test-extras.cmake @@ -39,3 +39,4 @@ endif() find_package(ament_cmake_core QUIET REQUIRED) include("${ament_cmake_test_DIR}/ament_add_test.cmake") +include("${ament_cmake_test_DIR}/ament_add_test_label.cmake") diff --git a/ament_cmake_test/cmake/ament_add_test_label.cmake b/ament_cmake_test/cmake/ament_add_test_label.cmake new file mode 100644 index 00000000..a876a322 --- /dev/null +++ b/ament_cmake_test/cmake/ament_add_test_label.cmake @@ -0,0 +1,29 @@ +# Copyright 2020 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Add text labels to the LABELS property of a test. +# +# :param testname: the name of the test +# :type testname: string +# :param ARGN: a list of labels +# :type ARGN: list of strings +# +# @public +# +function(ament_add_test_label testname) + get_test_property(${testname} LABELS labels) + list(APPEND labels ${ARGN}) + set_tests_properties(${testname} PROPERTIES LABELS "${labels}") +endfunction()