You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CL 343883 has been merged and presumably will be available in Go 1.18. When the user is using Go 1.18, this should allow us to run multiple subtests simultaneously.
Given -run 'A/B|C/D'
Go ≤ 1.17 interprets this as "Match test A → subtest B|C → subtest D"
Go ≥ 1.18 should interpret this as "Match test A → subtest B or test C → subtest D"
Now that the precedence (at the top level) of alternation | is higher than the precedence of the test/subtest separator /, it is easy to construct a regex that will strictly match the requested tests and subtests (once 1.18 is released).
The text was updated successfully, but these errors were encountered:
CL 343883 has been merged and presumably will be available in Go 1.18. When the user is using Go 1.18, this should allow us to run multiple subtests simultaneously.
-run 'A/B|C/D'
Now that the precedence (at the top level) of alternation
|
is higher than the precedence of the test/subtest separator/
, it is easy to construct a regex that will strictly match the requested tests and subtests (once 1.18 is released).The text was updated successfully, but these errors were encountered: