diff --git a/src/launch_manager_daemon/common/BUILD b/src/launch_manager_daemon/common/BUILD index dd71a42c..d65e43a9 100644 --- a/src/launch_manager_daemon/common/BUILD +++ b/src/launch_manager_daemon/common/BUILD @@ -1,5 +1,5 @@ # ******************************************************************************* -# Copyright (c) 2025 Contributors to the Eclipse Foundation +# Copyright (c) 2026 Contributors to the Eclipse Foundation # # See the NOTICE file(s) distributed with this work for additional # information regarding copyright ownership. @@ -10,6 +10,7 @@ # # SPDX-License-Identifier: Apache-2.0 # ******************************************************************************* +load("@rules_cc//cc:defs.bzl", "cc_test") load("//config:common_cc.bzl", "cc_binary_with_common_opts", "cc_library_with_common_opts") cc_library( @@ -101,3 +102,13 @@ cc_library( ":osal", ], ) + +cc_test( + name = "identifier_hash_UT", + srcs = ["src/identifier_hash_UT.cpp"], + visibility = ["//tests:__subpackages__"], + deps = [ + ":identifier_hash", + "@googletest//:gtest_main", + ], +) diff --git a/tests/ut/identifier_hash_UT/identifier_hash_UT.cpp b/src/launch_manager_daemon/common/src/identifier_hash_UT.cpp similarity index 100% rename from tests/ut/identifier_hash_UT/identifier_hash_UT.cpp rename to src/launch_manager_daemon/common/src/identifier_hash_UT.cpp diff --git a/tests/ut/identifier_hash_UT/BUILD b/tests/ut/identifier_hash_UT/BUILD deleted file mode 100644 index 866eedda..00000000 --- a/tests/ut/identifier_hash_UT/BUILD +++ /dev/null @@ -1,24 +0,0 @@ -# ******************************************************************************* -# Copyright (c) 2026 Contributors to the Eclipse Foundation -# -# See the NOTICE file(s) distributed with this work for additional -# information regarding copyright ownership. -# -# This program and the accompanying materials are made available under the -# terms of the Apache License Version 2.0 which is available at -# https://www.apache.org/licenses/LICENSE-2.0 -# -# SPDX-License-Identifier: Apache-2.0 -# ******************************************************************************* - -load("@rules_cc//cc:defs.bzl", "cc_test") - -cc_test( - name = "identifier_hash_UT", - srcs = ["identifier_hash_UT.cpp"], - visibility = ["//tests:__subpackages__"], - deps = [ - "//src/launch_manager_daemon/common:identifier_hash", - "@googletest//:gtest_main", - ], -)