Files
carbon-lang/toolchain/testing/BUILD
T
Jon Ross-Perkins 8c3fa80691 Add cc rule wrappers for cc_env (#5277)
Rules executed by bazel don't necessarily have the right environment to
find the symbolizer, which was the intent of `cc_env` setting
`LLVM_SYMBOLIZER_PATH`. So far, this has kind of been a case-by-case
fix, but every so often I'm trying to debug a crash in a test that
doesn't provide it. Rather continuing down this route, instead add
drop-in wrappers for cc rules so that it's hard to forget.

Note `bazel/cc_rules` is intended to mirror `bazel/carbon_rules` and
`bazel/cc_toolchains`, rather than `@rules_cc`.

AFAICT there isn't a great way to add this as a default for the `bazel
run` environment. It's not typically going to be set on its own,
forwarding `$PATH` would be too broad, and the [action
`env_sets`](https://bazel.build/docs/cc-toolchain-config-reference#using-action-config)
I think are not quite what we need (I think those don't include output
execution, only compilation).
2025-04-11 19:58:54 +00:00

101 lines
2.5 KiB
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
load("//bazel/cc_rules:defs.bzl", "cc_library", "cc_test")
load("//testing/file_test:rules.bzl", "file_test")
package(default_visibility = ["//visibility:public"])
filegroup(
name = "all_testdata",
srcs = [
"//toolchain/check:testdata",
"//toolchain/codegen:testdata",
"//toolchain/diagnostics:testdata",
"//toolchain/driver:testdata",
"//toolchain/format:testdata",
"//toolchain/language_server:testdata",
"//toolchain/lex:testdata",
"//toolchain/lower:testdata",
"//toolchain/parse:testdata",
],
)
filegroup(
name = "minimal_preludes",
data = [
"//toolchain/testing/min_prelude",
],
)
cc_library(
name = "compile_helper",
testonly = 1,
srcs = ["compile_helper.cpp"],
hdrs = ["compile_helper.h"],
deps = [
"//toolchain/diagnostics:diagnostic_emitter",
"//toolchain/lex",
"//toolchain/parse",
"//toolchain/parse:tree",
"//toolchain/source:source_buffer",
"@llvm-project//llvm:Support",
],
)
cc_library(
name = "coverage_helper",
testonly = 1,
hdrs = ["coverage_helper.h"],
deps = [
"//common:set",
"@googletest//:gtest",
"@llvm-project//llvm:Support",
"@re2",
],
)
file_test(
name = "file_test",
size = "small",
timeout = "moderate", # Taking >60 seconds in GitHub actions
srcs = ["file_test.cpp"],
data = [":minimal_preludes"],
tests = [":all_testdata"],
deps = [
"//common:all_llvm_targets",
"//common:error",
"//testing/file_test:file_test_base",
"//toolchain/driver",
"@abseil-cpp//absl/strings",
"@llvm-project//llvm:Support",
],
)
cc_library(
name = "yaml_test_helpers",
testonly = 1,
srcs = ["yaml_test_helpers.cpp"],
hdrs = ["yaml_test_helpers.h"],
deps = [
"//common:error",
"//common:ostream",
"//common:raw_string_ostream",
"@abseil-cpp//absl/strings",
"@googletest//:gtest",
"@llvm-project//llvm:Support",
],
)
cc_test(
name = "yaml_test_helpers_test",
size = "small",
srcs = ["yaml_test_helpers_test.cpp"],
deps = [
":yaml_test_helpers",
"//testing/base:gtest_main",
"@googletest//:gtest",
],
)