Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ on:
types: [checks_requested]
jobs:
test:
name: "Run tests"
uses: eclipse-score/cicd-workflows/.github/workflows/tests.yml@main
permissions:
contents: read
Expand Down
1 change: 0 additions & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ copyright_checker(
srcs = [
"examples",
"src",
"tests",
"//:BUILD",
"//:MODULE.bazel",
],
Expand Down
2 changes: 1 addition & 1 deletion src/launch_manager_daemon/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ cc_binary_with_common_opts(

cc_library(
name = "headers",
testonly = True,
hdrs = glob(
[
"src/**/*.h",
Expand All @@ -65,7 +66,6 @@ cc_library(
"include",
"src",
],
visibility = ["//tests:__subpackages__"],
deps = [
# Must match launch_manager deps
":config",
Expand Down
17 changes: 14 additions & 3 deletions src/launch_manager_daemon/process_state_client_lib/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
package(default_visibility = ["//tests:__subpackages__"])

cc_library(
name = "process_state_client",
srcs = [
Expand Down Expand Up @@ -40,6 +38,7 @@ cc_library(

cc_library(
name = "headers",
testonly = True,
hdrs = glob(
[
"include/score/lcm/**/*.h",
Expand All @@ -51,7 +50,6 @@ cc_library(
"include",
"src",
],
visibility = ["//tests:__subpackages__"],
deps = [
# Must match process_state_client deps
"//externals/ipc_dropin",
Expand All @@ -63,3 +61,16 @@ cc_library(
"@score_baselibs//score/result",
],
)

cc_test(
name = "processstateclient_UT",
srcs = [
"src/processstateclient_UT.cpp",
"//src/launch_manager_daemon/process_state_client_lib:src/processstatenotifier.cpp",
"//src/launch_manager_daemon/process_state_client_lib:src/processstatereceiver.cpp",
],
deps = [
"//src/launch_manager_daemon/process_state_client_lib:headers",
"@googletest//:gtest_main",
],
)
15 changes: 0 additions & 15 deletions tests/ut/BUILD

This file was deleted.

25 changes: 0 additions & 25 deletions tests/ut/processstateclient_UT/BUILD

This file was deleted.

Loading