From 0798a6305ea7b09febe2f655255d6344044a73ad Mon Sep 17 00:00:00 2001 From: Mike Kruskal Date: Thu, 11 Jun 2026 20:23:17 -0700 Subject: [PATCH] Add a note about sharded tests to documentation PiperOrigin-RevId: 930886442 --- doc/quickstart-bazel.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/quickstart-bazel.md b/doc/quickstart-bazel.md index e8ad53f2e..0afc5abc9 100644 --- a/doc/quickstart-bazel.md +++ b/doc/quickstart-bazel.md @@ -206,6 +206,10 @@ Note: Google Test filter = MyTestSuite.IntegerAdditionCommutes ^C ``` +NOTE: if your test is configured to use sharding by setting the `shard_count` +attribute, you must pass `--test_sharding_strategy=disabled` on your `bazel run` +command. + Congratulations! You're now all set for fuzzing with FuzzTest. ## Next steps