]> Cypherpunks repositories - gostls13.git/commitdiff
doc/go1.21: mention new go test -fullpath option
authorIan Lance Taylor <iant@golang.org>
Thu, 25 May 2023 21:17:56 +0000 (14:17 -0700)
committerGopher Robot <gobot@golang.org>
Fri, 26 May 2023 13:43:41 +0000 (13:43 +0000)
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>
doc/go1.21.html

index 6f37f7d11b330d35838567edac0aa75af5dcd3a7..373be6c6868dcf28ed1594a96cb2e26ca45158cb 100644 (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 -->