diff --git a/known_good.json b/known_good.json index 87cfd16737d..2dde9af38ad 100644 --- a/known_good.json +++ b/known_good.json @@ -2,15 +2,15 @@ "timestamp": "2025-08-13T12:55:10Z", "modules": { "score_baselibs": { - "version": "0.1.3", - "hash": "9457533471c8f0d4a1bb9435e91ff12c62d19c7c", + "version": "0.2.2", + "hash": "3c65b223e9f516f95935bb4cd2e83d6088ca016f", "repo": "https://github.com/eclipse-score/baselibs.git", "branch": "s_core_release_v0_5_0" }, "score_communication": { - "version": "0.1.1", + "version": "0.1.2", "repo": "https://github.com/eclipse-score/communication.git", - "hash": "24d6e8916b89dbb405eae0b082348645d190dc18", + "hash": "d5414f75bfd4fc116572091ccca305d9e4b39338", "branch": "s_core_release_v0_5_0" }, "score_persistency": { @@ -43,8 +43,8 @@ "repo": "https://github.com/eclipse-score/score.git" }, "score_bazel_platforms": { - "version": "0.0.2", - "hash": "0115193f958e8e592168df1e29cf86174bdba761", + "version": "0.0.3", + "hash": "c4813d5b65be9cec1d3a2b4d56cce2cf334fad27", "repo": "https://github.com/eclipse-score/bazel_platforms.git" }, "score_test_scenarios": { diff --git a/score_modules.MODULE.bazel b/score_modules.MODULE.bazel index 735cd801ea3..a7c89857af9 100644 --- a/score_modules.MODULE.bazel +++ b/score_modules.MODULE.bazel @@ -14,15 +14,21 @@ bazel_dep(name = "score_baselibs") single_version_override( module_name = "score_baselibs", - version = "0.1.3" + version = "0.2.2" ) bazel_dep(name = "score_communication") single_version_override( module_name = "score_communication", - version = "0.1.1", + version = "0.1.2", ) +# bazel_dep(name = "score_logging", dev_dependency = True) +# single_version_override( +# module_name = "score_logging", +# version = "0.0.3", +# ) + bazel_dep(name = "score_persistency") git_override( module_name = "score_persistency", @@ -58,7 +64,7 @@ git_override( bazel_dep(name = "score_bazel_platforms") single_version_override( module_name = "score_bazel_platforms", - version = "0.0.2", + version = "0.0.3", ) bazel_dep(name = "score_test_scenarios") @@ -84,3 +90,5 @@ single_version_override( module_name = "score_feo", version = "1.0.2", ) + +bazel_dep(name = "nlohmann_json", version = "3.11.3") \ No newline at end of file diff --git a/scripts/run_unit_tests.sh b/scripts/run_unit_tests.sh index ccbd9105ca0..00af935e3de 100755 --- a/scripts/run_unit_tests.sh +++ b/scripts/run_unit_tests.sh @@ -11,8 +11,14 @@ mkdir -p "${LOG_DIR}" || true declare -A UT_TARGET_GROUPS=( [baselibs]="@score_baselibs//score/... -- \ -@score_baselibs//score/language/safecpp/aborts_upon_exception:abortsuponexception_toolchain_test \ - -@score_baselibs//score/containers:dynamic_array_test" # nok, error in @score_baselibs//score/json/examples:json_buffer - [communication]="@score_communication//score/..." # nok, error from trlc in score_communication//score/mw/com/requirements/feature_requirements + -@score_baselibs//score/containers:dynamic_array_test \ + -@score_baselibs//score/mw/log/configuration:* \ + -@score_baselibs//score/json/examples:*" + [communication]="@score_communication//score/mw/com/impl/... -- \ + -@score_communication//score/mw/com/impl:unit_test_runtime_single_exec \ + -@score_communication//score/mw/com/impl/configuration:config_parser_test \ + -@score_communication//score/mw/com/impl/configuration:configuration_test \ + -@score_communication//score/mw/com/impl/tracing/configuration:tracing_filter_config_parser_test" [persistency]="@score_persistency//:unit_tests" # ok [orchestrator]="@score_orchestrator//src/..." # ok [kyron]="@score_kyron//:unit_tests" # ok