SERVER-117866: Add config mode for running rbe unit tests locally (#47022)

GitOrigin-RevId: d1922112f16e77b71fa283f87625b2298308ed4f
This commit is contained in:
Zack Winter 2026-01-27 10:13:17 -08:00 committed by MongoDB Bot
parent 371e47ca81
commit 1677cc16ee
2 changed files with 11 additions and 0 deletions

View File

@ -436,6 +436,14 @@ common:remote_test --remote_download_regex=.*\.(zip|core|mdmp|gz)$
test:remote_test --test_tag_filters=-incompatible_with_bazel_remote_test
--config=remote_unittest
common:remote_unittest --config=remote_test
common:remote_unittest --cache_test_results=auto
common:remote_unittest --dev_stacktrace=False
common:remote_unittest --run_under=//bazel:test_wrapper
common:remote_unittest --test_timeout=660
test:remote_unittest --test_tag_filters=mongo_unittest,-intermediate_debug,-incompatible_with_bazel_remote_test
# Coverage
coverage --//bazel/config:coverage=True
coverage --config=dbg

View File

@ -1,5 +1,8 @@
#!/bin/bash
# Golden tests are currently incompatible with Bazel Remote Execution
unset GOLDEN_TEST_CONFIG_PATH
is_ppc64le() {
local -r arch="$(uname -m)"
[[ "${arch}" == "ppc64le" || "${arch}" == "ppc64" || "${arch}" == "ppc" ]] && return 0 || return 1