Files
mongo/buildscripts/smoke_tests/server_programmability/BUILD.bazel
Sean Lyons 054ac72918 SERVER-119806: Add common jstest dependencies to all resmoke_suite_test targets (#48195)
GitOrigin-RevId: 18b5a2a01b009d7c9e94bbe458b7b887886ae637
2026-02-20 18:56:27 +00:00

73 lines
2.4 KiB
Python

load("//bazel/resmoke:resmoke.bzl", "resmoke_suite_test")
resmoke_suite_test(
name = "core",
srcs = [
"//jstests/core/testing:failcommand_failpoint.js",
],
config = "//buildscripts/resmokeconfig:suites/core.yml",
resmoke_args = ["--runAllFeatureFlagTests"],
tags = [
"ci-development-critical-single-variant",
"server-programmability",
],
deps = [
"//src/mongo/db:mongod",
"//src/mongo/shell:mongo",
],
)
resmoke_suite_test(
name = "failpoints",
srcs = [
"//jstests/fail_point:all_javascript_files",
],
config = "//buildscripts/resmokeconfig:suites/failpoints.yml",
resmoke_args = ["--runAllFeatureFlagTests"],
tags = [
"ci-development-critical-single-variant",
"server-programmability",
],
deps = [
"//src/mongo/db:mongod",
"//src/mongo/s:mongos",
"//src/mongo/shell:mongo",
],
)
resmoke_suite_test(
name = "no_passthrough",
srcs = [
"//jstests/noPassthrough:reproducible_initializer_order.js",
"//jstests/noPassthrough:version.js",
"//jstests/noPassthrough:exit_logging.js",
"//jstests/noPassthrough:tassert_failpoint.js",
# The test below can fail depending on the host's configured ulimits, so it's not included.
# "//jstests/noPassthrough/pin_code_segments_on_startup.js",
"//jstests/noPassthrough:utf8_paths.js",
"//jstests/noPassthrough/bson:all_javascript_files",
"//jstests/noPassthrough/interruption:all_javascript_files",
"//jstests/noPassthrough/server_parameters:all_javascript_files",
"//jstests/noPassthrough/startup_shutdown:all_javascript_files",
"//jstests/noPassthrough/architecture:failcommand_failpoint_maxtimems.js",
"//jstests/noPassthrough/architecture:failcommand_failpoint_not_parallel.js",
],
config = "//buildscripts/resmokeconfig:suites/no_passthrough.yml",
data = [
"//jstests/libs:key1",
"//jstests/libs:testconfig",
"//jstests/noPassthrough/libs:all_javascript_files",
],
resmoke_args = ["--runAllFeatureFlagTests"],
shard_count = 8,
tags = [
"ci-development-critical-single-variant",
"server-programmability",
],
deps = [
"//src/mongo/db:mongod",
"//src/mongo/s:mongos",
"//src/mongo/shell:mongo",
],
)