Disable some tests under msan

PiperOrigin-RevId: 521505590
pull/12398/head
Marcel Hlopko 2 years ago committed by Copybara-Service
parent 02cdbd7202
commit ef299f7af4
  1. 4
      rust/cpp_kernel/BUILD
  2. 2
      rust/upb_kernel/BUILD

@ -15,7 +15,11 @@ rust_test(
name = "cpp_test",
crate = ":cpp",
tags = [
# TODO(b/270274576): Enable testing on arm once we have a Rust Arm toolchain.
"not_build:arm",
# TODO(b/243126140): Enable tsan once we support sanitizers with Rust.
"notsan",
# TODO(b/243126140): Enable msan once we support sanitizers with Rust.
"nomsan",
],
)

@ -13,7 +13,9 @@ rust_test(
name = "upb_test",
crate = ":upb",
tags = [
# TODO(b/270274576): Enable testing on arm once we have a Rust Arm toolchain.
"not_build:arm",
# TODO(b/243126140): Enable tsan once we support sanitizers with Rust.
"notsan",
# TODO(b/243126140): Enable msan once we support sanitizers with Rust.
"nomsan",

Loading…
Cancel
Save