Skip to content

Commit

Permalink
Typo --test_runner_fail_fast (#3773)
Browse files Browse the repository at this point in the history
* Typo --test_runner_fail_fast

The real command argument is `--test_runner_fail_fast` not `--test_runner_fast_fast`

* docs update

* update stardoc instead of markdown
  • Loading branch information
Clement-Jean authored Dec 7, 2023
1 parent b4b04b8 commit c90a11a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/go/core/rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ This builds a set of tests that can be run with `bazel test`.<br><br>
`--test_arg=arg <test_arg_>` arguments to Bazel, and you can set environment
variables in the test environment by passing
`--test_env=VAR=value <test_env_>`. You can terminate test execution after the first
failure by passing the `--test_runner_fast_fast <test_runner_fail_fast_>` argument
failure by passing the `--test_runner_fail_fast <test_runner_fail_fast_>` argument
to Bazel. This is equivalent to passing `--test_arg=-failfast <test_arg_>`.<br><br>
To write structured testlog information to Bazel's `XML_OUTPUT_FILE`, tests
ran with `bazel test` execute using a wrapper. This functionality can be
Expand Down
2 changes: 1 addition & 1 deletion go/private/rules/test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ _go_test_kwargs = {
`--test_arg=arg <test_arg_>` arguments to Bazel, and you can set environment
variables in the test environment by passing
`--test_env=VAR=value <test_env_>`. You can terminate test execution after the first
failure by passing the `--test_runner_fast_fast <test_runner_fail_fast_>` argument
failure by passing the `--test_runner_fail_fast <test_runner_fail_fast_>` argument
to Bazel. This is equivalent to passing `--test_arg=-failfast <test_arg_>`.<br><br>
To write structured testlog information to Bazel's `XML_OUTPUT_FILE`, tests
ran with `bazel test` execute using a wrapper. This functionality can be
Expand Down

0 comments on commit c90a11a

Please sign in to comment.