blob: 02a083ba5c32240508f73b407bc6c77e3a61bcab [file]
load("@bazel_features//:features.bzl", "bazel_features")
#buildifier: disable=bzl-visibility
load("@bazel_features//private:util.bzl", _features_ge = "ge")
load("//tests/integration:rules_cc_integration_test.bzl", "rules_cc_integration_test")
exports_files(
srcs = ["test_launcher.sh"],
visibility = ["//tests:__subpackages__"],
)
rules_cc_integration_test(
name = "cc_tests",
shard_count = 4,
test_script = "cc_tests.sh",
)
# Tests migrated from bazelbuild/bazel/src/test/shell/bazel/cc_integration_test.sh
# In a separate file from cc_tests.sh to make migration clearer.
rules_cc_integration_test(
name = "cc_integration_test",
shard_count = 10,
target_compatible_with = select({
"@platforms//os:macos": ["@platforms//:incompatible"],
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}) if bazel_features.cc.cc_common_is_in_rules_cc else ["@platforms//:incompatible"],
test_script = "cc_integration_test.sh",
)
rules_cc_integration_test(
name = "lto_tests",
target_compatible_with = select({
"@platforms//os:macos": ["@platforms//:incompatible"],
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
test_script = "lto_tests.sh",
)
rules_cc_integration_test(
name = "cc_shared_library_tests",
# These could probably be made to work on all CI platforms,
# but the default toolchains are not properly configured for it.
target_compatible_with = select({
"@platforms//os:macos": ["@platforms//:incompatible"],
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
test_script = "cc_shared_library_tests.sh",
)
rules_cc_integration_test(
name = "fission_tests",
target_compatible_with = select({
"@platforms//os:macos": ["@platforms//:incompatible"],
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
test_script = "fission_tests.sh",
)
STATIC_LIBRARY_VERSION_GATE = [] if bazel_features.cc.cc_common_is_in_rules_cc else ["@platforms//:incompatible"] # copybara-uncomment-this-please
# STATIC_LIBRARY_VERSION_GATE = ["@platforms//:incompatible"] # copybara-comment-this-out-please
rules_cc_integration_test(
name = "cc_static_library_failure_tests",
tags = ["notap"],
target_compatible_with = select({
"@platforms//os:macos": ["@platforms//:incompatible"],
"//conditions:default": STATIC_LIBRARY_VERSION_GATE,
}),
test_script = "cc_static_library_failure_tests.sh",
)
rules_cc_integration_test(
name = "cc_shared_library_toolchain_tests",
# These could probably be made to work on all CI platforms,
# but the default toolchains are not properly configured for it.
target_compatible_with = select({
"@platforms//os:macos": ["@platforms//:incompatible"],
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [] if _features_ge("9.2.0") else ["@platforms//:incompatible"],
}),
test_script = "cc_shared_library_toolchain_tests.sh",
)
rules_cc_integration_test(
name = "ftime_trace_tests",
tags = ["notap"],
target_compatible_with = select({
"@platforms//os:macos": ["@platforms//:incompatible"],
"@platforms//os:windows": ["@platforms//:incompatible"],
# "//conditions:default": ["@platforms//:incompatible"], # copybara-comment-this-out-please
"//conditions:default": [], # copybara-uncomment-this-please
}),
test_script = "ftime_trace_tests.sh",
)