diff --git a/doc/go1.18.html b/doc/go1.18.html index 77c26bc257..4a09cb6773 100644 --- a/doc/go1.18.html +++ b/doc/go1.18.html @@ -782,11 +782,17 @@ Do not send CLs removing the interior tags from such phrases.
- TODO: https://golang.org/cl/343883: increase alternation precedence
+ The precedence of / in the argument for -run and
+ -bench has been increased. A/B|C/D used to be
+ treated as A/(B|C)/D and is now treated as
+ (A/B)/(C/D).
- TODO: https://golang.org/cl/356669: skip extra -count iterations if there are no tests
+ If the -run option does not select any tests, the
+ -count option is ignored. This could change the behavior of
+ existing tests in the unlikely case that a test changes the set of subtests
+ that are run each time the test function itself is run.