Skip to content
Draft
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
4 changes: 4 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ bazel_dep(name = "rules_pkg", version = "1.2.0", dev_dependency = True)

# QNX image filesystem rules for QNX integration tests
bazel_dep(name = "score_rules_imagefs", version = "0.0.1", dev_dependency = True)
single_version_override(
module_name = "score_rules_imagefs",
version = "0.0.1",
)

imagefs = use_extension("@score_rules_imagefs//extensions:imagefs.bzl", "imagefs", dev_dependency = True)
imagefs.toolchain(
Expand Down
869 changes: 466 additions & 403 deletions MODULE.bazel.lock

Large diffs are not rendered by default.

10 changes: 0 additions & 10 deletions score/datarouter/test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************

load("@score_baselibs//third_party/itf:py_unittest_qnx_test.bzl", "py_unittest_qnx_test")

## ---------------------------------------------------------------------------
## Unit tests
## ---------------------------------------------------------------------------
Expand All @@ -24,11 +22,3 @@ test_suite(
],
visibility = ["@score_logging//score/datarouter:__pkg__"],
)

py_unittest_qnx_test(
name = "unit_tests_qnx",
test_suites = [
"//score/datarouter/test/ut:unit_tests_qnx",
],
visibility = ["//visibility:public"], # platform_only
)
10 changes: 0 additions & 10 deletions score/datarouter/test/ut/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************

load("@score_baselibs//third_party/itf:py_unittest_qnx_test.bzl", "py_unittest_qnx_test")

## ---------------------------------------------------------------------------
## Unit tests
## ---------------------------------------------------------------------------
Expand All @@ -24,11 +22,3 @@ test_suite(
],
visibility = ["@score_logging//score/datarouter:__pkg__"],
)

py_unittest_qnx_test(
name = "unit_tests_qnx",
test_suites = [
"//score/datarouter/test/ut/ut_logging:unit_tests_qnx",
],
visibility = ["//visibility:public"], # platform_only
)
34 changes: 0 additions & 34 deletions score/datarouter/test/ut/ut_logging/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
# *******************************************************************************

load("@rules_cc//cc:defs.bzl", "cc_test")
load("@score_baselibs//third_party/itf:py_unittest_qnx_test.bzl", "py_unittest_qnx_test")

FEAT_COMPILER_WARNINGS_AS_ERRORS = [
"treat_warnings_as_errors",
Expand Down Expand Up @@ -424,36 +423,3 @@ cc_test(
"@score_logging//score/datarouter:unixdomain_common",
],
)

py_unittest_qnx_test(
name = "unit_tests_qnx",
data_files = [
"//score/datarouter/test/ut/etc:fg_persistent_logging_test_json",
"//score/datarouter/test/ut/etc:fg_socketserver_config_test_json",
"//score/datarouter/test/ut/etc:fg_socket_server_log_channels_test_json",
],
test_cases = [
":errorUT",
":filetransferUT",
":datarouterAppUT",
":dltprotocolUT",
":optionsUT",
":dltserverUT",
":logparserUT",
":persistentLogConfigUT",
":dlt_verbose_handler_test",
":udp_stream_output_test",
":unix_domain_common_test",
":unix_domain_server_test",
":messagePassingServerUT",
":socketserverConfigUT",
":socketserverUT",
":log_entry_deserialize_test",
":utility_test",
":FileTransferHandlerFactoryUT",
":PersistentDictionaryFactoryUT",
"//score/datarouter/persistent_log_request/test:test_persistent_log_request",
"//score/datarouter/tools/generator:fibex_generator_test",
],
visibility = ["//visibility:public"], # platform_only
)
2 changes: 1 addition & 1 deletion score/mw/log/detail/data_router/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ cc_library(
"@score_baselibs//score/concurrency",
"@score_baselibs//score/concurrency:thread_pool",
"@score_baselibs//score/language/futurecpp",
"@score_baselibs//score/memory/shared", # Preperation for full rollout of (Ticket-105741), build cyclic dependency is broken (runtime, in next commit)
"@score_baselibs//score/mw/log:recorder",
"@score_baselibs//score/mw/log/configuration",
"@score_baselibs//score/mw/log/detail:backend_interface",
Expand All @@ -74,6 +73,7 @@ cc_library(
"@score_baselibs//score/os:pthread",
"@score_baselibs//score/os:stdlib",
"@score_baselibs//score/os/utils:signal",
"@score_communication//score/memory/shared", # Preperation for full rollout of (Ticket-105741), build cyclic dependency is broken (runtime, in next commit)
"@score_communication//score/message_passing",
],
)
Expand Down
10 changes: 0 additions & 10 deletions score/mw/log/detail/slog/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
# *******************************************************************************

load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("@score_baselibs//third_party/itf:py_unittest_qnx_test.bzl", "py_unittest_qnx_test")
load("//:score/mw/common_features.bzl", "COMPILER_WARNING_FEATURES")

cc_library(
Expand Down Expand Up @@ -120,15 +119,6 @@ cc_test(
}),
)

py_unittest_qnx_test(
name = "unit_tests_qnx",
test_cases = [
":slog_backend_test",
":slog_recorder_factory_test",
],
visibility = ["@score_baselibs//score/mw/log/detail:__pkg__"],
)

test_suite(
name = "unit_tests_host",
tests = [],
Expand Down
Loading