1
0
mirror of https://github.com/golang/go synced 2024-09-28 21:34:30 -06:00

doc/go1.21: mention new go test -fullpath option

For #37708

Change-Id: I7b04d6331c15771c7d74ff77afd523c435e0dafe
Reviewed-on: https://go-review.googlesource.com/c/go/+/498396
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Eli Bendersky <eliben@google.com>
Reviewed-by: Eli Bendersky <eliben@google.com>
This commit is contained in:
Ian Lance Taylor 2023-05-25 14:17:56 -07:00 committed by Gopher Robot
parent f90b4cd655
commit f89d575d9e

View File

@ -116,6 +116,12 @@ Do not send CLs removing the interior tags from such phrases.
program.
</p>
<p><!-- https://go.dev/issue/37708, CL 463837 -->
The new <code>go</code> <code>test</code> option
<code>-fullpath</code> prints full path names in test log messages,
rather than just base names.
</p>
<p><!-- CL 453603 -->
TODO: <a href="https://go.dev/cl/453603">https://go.dev/cl/453603</a>: cmd/go, go/build: parse directives in file headers; modified api/next/56986.txt
</p>
@ -768,8 +774,9 @@ Do not send CLs removing the interior tags from such phrases.
<dl id="testing"><dt><a href="/pkg/testing/">testing</a></dt>
<dd>
<p><!-- https://go.dev/issue/37708 -->
TODO: <a href="https://go.dev/issue/37708">https://go.dev/issue/37708</a>: optionally include full (or relative) path name
<p><!-- https://go.dev/issue/37708, CL 463837 -->
The new <code>-test.fullpath</code> option will print full path
names in test log messages, rather than just base names.
</p>
<p><!-- https://go.dev/issue/52600, CL 475496 -->