From eac732d6f21dbb7fb107af60632af020e8e36f18 Mon Sep 17 00:00:00 2001 From: gs-olive <113141689+gs-olive@users.noreply.github.com> Date: Fri, 28 Jun 2024 10:31:49 -0700 Subject: [PATCH] fix: Add missing select in Bazel BUILD --- tests/core/conversion/converters/BUILD | 7 +++++++ tests/core/conversion/evaluators/BUILD | 7 +++++++ tests/core/runtime/BUILD | 7 +++++++ 3 files changed, 21 insertions(+) diff --git a/tests/core/conversion/converters/BUILD b/tests/core/conversion/converters/BUILD index cc258285ac..05ad6e356c 100644 --- a/tests/core/conversion/converters/BUILD +++ b/tests/core/conversion/converters/BUILD @@ -7,6 +7,13 @@ config_setting( }, ) +config_setting( + name = "windows", + constraint_values = [ + "@platforms//os:windows", + ], +) + converter_test( name = "test_activation", ) diff --git a/tests/core/conversion/evaluators/BUILD b/tests/core/conversion/evaluators/BUILD index b7f95a360f..4059b97df3 100644 --- a/tests/core/conversion/evaluators/BUILD +++ b/tests/core/conversion/evaluators/BUILD @@ -7,6 +7,13 @@ config_setting( }, ) +config_setting( + name = "windows", + constraint_values = [ + "@platforms//os:windows", + ], +) + evaluator_test( name = "test_prim_evaluators", ) diff --git a/tests/core/runtime/BUILD b/tests/core/runtime/BUILD index deddca4cfb..d25379b44d 100644 --- a/tests/core/runtime/BUILD +++ b/tests/core/runtime/BUILD @@ -9,6 +9,13 @@ config_setting( }, ) +config_setting( + name = "windows", + constraint_values = [ + "@platforms//os:windows", + ], +) + runtime_test( name = "test_multi_device_safe_mode", )