From dd7101ae3c65091c5adcac12aeafc1eccba1c89d Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Thu, 13 Apr 2023 10:42:22 +0000 Subject: [PATCH] Revert "fix: disable the system-test boundary_nodes_snp_test" --- rs/tests/boundary_nodes/BUILD.bazel | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/rs/tests/boundary_nodes/BUILD.bazel b/rs/tests/boundary_nodes/BUILD.bazel index ac7e10d99c6..3aeee85bdf1 100644 --- a/rs/tests/boundary_nodes/BUILD.bazel +++ b/rs/tests/boundary_nodes/BUILD.bazel @@ -1,5 +1,5 @@ load("//rs/tests:system_tests.bzl", "system_test") -load("//rs/tests:common.bzl", "BOUNDARY_NODE_GUESTOS_RUNTIME_DEPS", "COUNTER_CANISTER_RUNTIME_DEPS", "DEPENDENCIES", "GRAFANA_RUNTIME_DEPS", "GUESTOS_RUNTIME_DEPS", "MACRO_DEPENDENCIES", "NNS_CANISTER_RUNTIME_DEPS", "UNIVERSAL_VM_RUNTIME_DEPS") +load("//rs/tests:common.bzl", "BOUNDARY_NODE_GUESTOS_RUNTIME_DEPS", "BOUNDARY_NODE_GUESTOS_SEV_RUNTIME_DEPS", "COUNTER_CANISTER_RUNTIME_DEPS", "DEPENDENCIES", "GRAFANA_RUNTIME_DEPS", "GUESTOS_RUNTIME_DEPS", "MACRO_DEPENDENCIES", "NNS_CANISTER_RUNTIME_DEPS", "UNIVERSAL_VM_RUNTIME_DEPS") package(default_visibility = ["//visibility:public"]) @@ -31,15 +31,14 @@ system_test( deps = DEPENDENCIES + ["//rs/tests"], ) -# TODO(VER-2274): Enable this SEV test again after both SEV farm hosts sf1-spm41 and sf1-gby01 are working and attached to farm again: -#system_test( -# name = "boundary_nodes_snp_test", -# proc_macro_deps = MACRO_DEPENDENCIES, -# tags = [], -# target_compatible_with = ["@platforms//os:linux"], # requires libssh that does not build on Mac OS -# runtime_deps = BOUNDARY_NODE_GUESTOS_RUNTIME_DEPS + BOUNDARY_NODE_GUESTOS_SEV_RUNTIME_DEPS + GUESTOS_RUNTIME_DEPS + NNS_CANISTER_RUNTIME_DEPS, -# deps = DEPENDENCIES + ["//rs/tests"], -#) +system_test( + name = "boundary_nodes_snp_test", + proc_macro_deps = MACRO_DEPENDENCIES, + tags = [], + target_compatible_with = ["@platforms//os:linux"], # requires libssh that does not build on Mac OS + runtime_deps = BOUNDARY_NODE_GUESTOS_RUNTIME_DEPS + BOUNDARY_NODE_GUESTOS_SEV_RUNTIME_DEPS + GUESTOS_RUNTIME_DEPS + NNS_CANISTER_RUNTIME_DEPS, + deps = DEPENDENCIES + ["//rs/tests"], +) system_test( name = "boundary_node_update_workload_test",