mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:20:10 +01:00
Mainly because "sorting_diagnostic_consumer" is legacy, since `SortingDiagnosticConsumer` became `SortingConsumer`. Also better reflecting contents of these files. Where I'm not renaming, I'm less positive about dropping "diagnostics" from "file_diagnostics" and "null_diagnostics" (which contain both a consumer and emitter, and "null.h" seems like poor naming), so not doing that here. Also "diagnostic.h" contains `struct Diagnostic`, so is a decent fit. Assisted-by: Google Antigravity with Gemini 3 Flash
106 lines
2.7 KiB
Python
106 lines
2.7 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/driver:testdata",
|
|
"//toolchain/format:testdata",
|
|
"//toolchain/language_server:testdata",
|
|
"//toolchain/lex:testdata",
|
|
"//toolchain/lower:testdata",
|
|
"//toolchain/parse:testdata",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "min_prelude",
|
|
srcs = glob(["testdata/min_prelude/**/*.carbon"]),
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "compile_helper",
|
|
testonly = 1,
|
|
srcs = ["compile_helper.cpp"],
|
|
hdrs = ["compile_helper.h"],
|
|
deps = [
|
|
"//toolchain/diagnostics: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:find",
|
|
"//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 = [
|
|
":min_prelude",
|
|
"//toolchain/install:clang_headers",
|
|
"//toolchain/install:clang_headers_manifest.txt",
|
|
],
|
|
tests = [":all_testdata"],
|
|
deps = [
|
|
"//common:all_llvm_targets",
|
|
"//common:error",
|
|
"//testing/file_test:autoupdate",
|
|
"//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",
|
|
"//common:error_test_helpers",
|
|
"//testing/base:gtest_main",
|
|
"@googletest//:gtest",
|
|
],
|
|
)
|