Files
carbon-lang/toolchain/install/cc_tools_wrapper_test.py
T
Chandler Carruth d8fe95cccb Test and fix make-variable expansion in our toolchains (#7070)
This worked correctly in the system Clang toolchain, but was not
configured correctly in the Carbon toolchains. The test is designed to
let us cover all of these.

Assisted-by: Antigravity with Gemini
2026-04-16 21:08:37 +00:00

18 lines
585 B
Python

"""Wrapper script to run cc_tools_test from toolchain/install.
This script imports `test_tools` from `bazel.cc_toolchains.cc_tools_test`
and executes it. This allows running the test in `toolchain/install` package
while keeping the main logic in `bazel/cc_toolchains`.
"""
__copyright__ = """
Part of the Carbon Language project, under the Apache License v2.0 with LLVM
Exceptions. See /LICENSE for license information.
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
"""
from bazel.cc_toolchains.cc_tools_test import test_tools
if __name__ == "__main__":
test_tools()