Files
carbon-lang/integration_tests/BUILD
T
Geoff Romer 2ac425e591 Test calling std::make_unique on a Carbon type from Carbon. (#7563)
As a byproduct, this introduces a new top-level directory
`integration_tests` for tests like this.

This also fixes a latent bug with name mangling on Mac.
2026-07-29 16:07:10 +00:00

19 lines
843 B
Python

# 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
# This package is for integration tests of the entire Carbon system,
# encompassing things like libraries as well as the toolchain proper. These
# will typically be execution tests, which use the toolchain to build and run a
# test binary, rather than directly checking the toolchain's output. This kind
# of testing should be used sparingly, because it's substantially more costly,
# and not applicable when the toolchain is built as a cross-compiler.
load("//bazel/carbon_rules:defs.bzl", "carbon_binary")
# TODO: Change this to `carbon_test` once that exists.
carbon_binary(
name = "make_unique_test",
srcs = ["make_unique_test.carbon"],
)