mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:00:12 +01:00
125 lines
3.0 KiB
Python
125 lines
3.0 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_toolchains:defs.bzl", "cc_env")
|
|
load("//bazel/sh_run:rules.bzl", "glob_sh_run")
|
|
load("//testing/file_test:rules.bzl", "file_test")
|
|
|
|
package(default_visibility = [
|
|
"//bazel/check_deps:__pkg__",
|
|
"//explorer:__subpackages__",
|
|
"//installers:__subpackages__",
|
|
])
|
|
|
|
filegroup(
|
|
name = "standard_libraries",
|
|
srcs = ["data/prelude.carbon"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "main",
|
|
srcs = ["main.cpp"],
|
|
hdrs = ["main.h"],
|
|
deps = [
|
|
"//common:error",
|
|
"//common:ostream",
|
|
"//explorer/base:trace_stream",
|
|
"//explorer/parse_and_execute",
|
|
"@llvm-project//llvm:Support",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "explorer",
|
|
srcs = ["main_bin.cpp"],
|
|
env = cc_env(),
|
|
deps = [
|
|
":main",
|
|
"//common:bazel_working_dir",
|
|
"@llvm-project//llvm:Support",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "file_test_common",
|
|
testonly = 1,
|
|
srcs = ["file_test.cpp"],
|
|
deps = [
|
|
":main",
|
|
"//common:check",
|
|
"//testing/file_test:file_test_base",
|
|
"//testing/util:test_raw_ostream",
|
|
"@com_google_absl//absl/flags:flag",
|
|
"@com_googlesource_code_re2//:re2",
|
|
],
|
|
)
|
|
|
|
file_test(
|
|
name = "file_test",
|
|
size = "small",
|
|
shard_count = 20,
|
|
tests = glob(["testdata/**/*.carbon"]),
|
|
deps = [
|
|
":file_test_common",
|
|
"@com_googlesource_code_re2//:re2",
|
|
],
|
|
)
|
|
|
|
file_test(
|
|
name = "file_test.trace",
|
|
size = "small",
|
|
args = ["--trace"],
|
|
shard_count = 30,
|
|
tests = glob(
|
|
["testdata/**/*.carbon"],
|
|
exclude = [
|
|
# `limits` tests check for various limit conditions (such as an
|
|
# infinite loop). The tests collectively don't test tracing
|
|
# because it creates substantial additional overhead.
|
|
"testdata/limits/**",
|
|
# `trace` tests do tracing by default.
|
|
"testdata/trace/**",
|
|
# Expensive tests to trace.
|
|
"testdata/assoc_const/rewrite_large_type.carbon",
|
|
"testdata/linked_list/typed_linked_list.carbon",
|
|
],
|
|
),
|
|
deps = [":file_test_common"],
|
|
)
|
|
|
|
glob_sh_run(
|
|
args = ["$(location //explorer)"],
|
|
data = ["//explorer"],
|
|
file_exts = ["carbon"],
|
|
)
|
|
|
|
glob_sh_run(
|
|
args = [
|
|
"$(location //explorer)",
|
|
"--parser_debug",
|
|
"--trace_file=-",
|
|
],
|
|
data = ["//explorer"],
|
|
file_exts = ["carbon"],
|
|
run_ext = "verbose",
|
|
)
|
|
|
|
filegroup(
|
|
name = "carbon_files",
|
|
srcs = glob(["testdata/**/*.carbon"]),
|
|
# Files are used for validating fuzzer completeness.
|
|
visibility = ["//explorer/fuzzing:__pkg__"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "treesitter_testdata",
|
|
srcs = glob(
|
|
["testdata/**/*.carbon"],
|
|
exclude = [
|
|
"testdata/**/fail_*",
|
|
],
|
|
),
|
|
visibility = ["//utils/treesitter:__pkg__"],
|
|
)
|