Add test sharding support for rust_test #3774
Draft
+361
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
rust_testtargets don't support Bazel's native test sharding. Whenshard_countis set on arust_test:--incompatible_check_sharding_support: all tests run N times (once per shard)--incompatible_check_sharding_support: the test fails because Rust's libtest harness doesn't readTEST_SHARD_INDEX/TEST_TOTAL_SHARDSenvironment variablesSolution
This PR adds opt-in sharding support via a new
experimental_enable_shardingattribute. When enabled, tests are executed via a wrapper script that:TEST_TOTAL_SHARDSenvironment variableTEST_SHARD_STATUS_FILEto advertise sharding support to Bazel--list --format terseflagindex % TEST_TOTAL_SHARDS == TEST_SHARD_INDEX--exactUsage