blob: 062aa256b1cb25eaf3ad50594b94bcd5b563c72c [file] [log] [blame]
# 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."""
def crubit_cc_test(
name,
**kwargs):
"""A wrapper for `cc_test` for Google-internal purposes."""
native.cc_test(
name = name,
**kwargs
)