blob: a4d699682f90b08c9afda45c30fca7037d3d0d06 [file]
# Part of the Crubit project, under the Apache License v2.0 with LLVM
# Exceptions. See /LICENSE for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
"""A macro for generating tests with various Crubit build flavors."""
load("@rules_rust//rust:defs.bzl", "rust_test")
def crubit_rust_test(
name,
**kwargs):
"""A wrapper for `rust_test` for Google-internal purposes."""
rust_test(
name = name,
**kwargs
)