<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go/src/runtime/debug/stack_test.go, branch makepkg</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=makepkg</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=makepkg'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2025-02-24T19:03:10Z</updated>
<entry>
<title>all: use testenv.Executable instead of os.Executable and os.Args[0]</title>
<updated>2025-02-24T19:03:10Z</updated>
<author>
<name>qmuntal</name>
<email>quimmuntal@gmail.com</email>
</author>
<published>2025-02-24T08:43:41Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=dceee2e983f5dab65c3905ecf40e70e15cf41b7d'/>
<id>urn:sha1:dceee2e983f5dab65c3905ecf40e70e15cf41b7d</id>
<content type='text'>
In test files, using testenv.Executable is more reliable than
os.Executable or os.Args[0].

Change-Id: I88e577efeabc20d02ada27bf706ae4523129128e
Reviewed-on: https://go-review.googlesource.com/c/go/+/651955
Reviewed-by: Cherry Mui &lt;cherryyz@google.com&gt;
LUCI-TryBot-Result: Go LUCI &lt;golang-scoped@luci-project-accounts.iam.gserviceaccount.com&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@google.com&gt;
</content>
</entry>
<entry>
<title>runtime/debug: eliminate temporary variadicity from SetCrashOutput</title>
<updated>2024-05-16T15:19:04Z</updated>
<author>
<name>Alan Donovan</name>
<email>adonovan@google.com</email>
</author>
<published>2024-05-15T21:41:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=a22cb5cabe2bcc8ed02c43a66a1bd319cb28e89c'/>
<id>urn:sha1:a22cb5cabe2bcc8ed02c43a66a1bd319cb28e89c</id>
<content type='text'>
Updates #67182

Change-Id: I33fc8c515f4a9d120262ba30f61aea80ede5e9f8
Reviewed-on: https://go-review.googlesource.com/c/go/+/585420
LUCI-TryBot-Result: Go LUCI &lt;golang-scoped@luci-project-accounts.iam.gserviceaccount.com&gt;
Reviewed-by: Austin Clements &lt;austin@google.com&gt;
</content>
</entry>
<entry>
<title>runtime/debug: SetCrashOutput sets the FD for fatal panics</title>
<updated>2024-01-31T16:50:42Z</updated>
<author>
<name>Alan Donovan</name>
<email>adonovan@google.com</email>
</author>
<published>2023-12-07T23:02:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1bb947b2eb62f54dd7ff621f7e1c768c00edd1a7'/>
<id>urn:sha1:1bb947b2eb62f54dd7ff621f7e1c768c00edd1a7</id>
<content type='text'>
This feature makes it possible to record unhandled panics
in any goroutine through a watchdog process (e.g. the same
application forked+exec'd as a child in a special mode)
that can process the panic report, for example by sending
it to a crash-reporting system such as Go telemetry
or Sentry.

Fixes #42888

Change-Id: I5aa7be8f726bbc70fc650540bd1a14ab60c62ecb
Reviewed-on: https://go-review.googlesource.com/c/go/+/547978
Reviewed-by: Michael Pratt &lt;mpratt@google.com&gt;
LUCI-TryBot-Result: Go LUCI &lt;golang-scoped@luci-project-accounts.iam.gserviceaccount.com&gt;
Auto-Submit: Alan Donovan &lt;adonovan@google.com&gt;
Reviewed-by: Russ Cox &lt;rsc@golang.org&gt;
</content>
</entry>
<entry>
<title>runtime/debug: do not require a GOROOT/src prefix in TestStack</title>
<updated>2022-03-17T19:24:19Z</updated>
<author>
<name>Bryan C. Mills</name>
<email>bcmills@google.com</email>
</author>
<published>2022-03-11T04:57:57Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=c6244b59095a74b77c977d250708ba1858ae2388'/>
<id>urn:sha1:c6244b59095a74b77c977d250708ba1858ae2388</id>
<content type='text'>
When paths are trimmed, the reported file locations begin with the
package import path (not GOROOT/src).

Updates #51461.

Change-Id: Ia6814f970aee11f3d933e75c75136d679d19e220
Reviewed-on: https://go-review.googlesource.com/c/go/+/391815
Trust: Bryan Mills &lt;bcmills@google.com&gt;
Run-TryBot: Bryan Mills &lt;bcmills@google.com&gt;
Reviewed-by: Cherry Mui &lt;cherryyz@google.com&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>all: untab /* */ doc comments</title>
<updated>2022-03-15T17:17:30Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2022-02-03T16:50:45Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1178255f8596ea503daf30c84c7c1039f755e7f0'/>
<id>urn:sha1:1178255f8596ea503daf30c84c7c1039f755e7f0</id>
<content type='text'>
A long time ago, gofmt insisted on inserting tabs in /* */ comments
at the top level of the file, like this:

	/*
		Package doc comment.
	*/
	package p

Gofmt still insists on the tab for comments not at top level,
but it has relaxed the rules about top-level comments.
A few very old doc comments are indented, left over from the old rule.

We are considering formatting doc comments, and so to make
everything consistent, standardize on unindented doc comments
by removing tabs in the few doc comments that are still indented this way.

Also update some cmd/gofmt testdata to match.

Change-Id: I293742e39b52f8a48ec41f72ca4acdafa7ce43bc
Reviewed-on: https://go-review.googlesource.com/c/go/+/384261
Trust: Russ Cox &lt;rsc@golang.org&gt;
Run-TryBot: Russ Cox &lt;rsc@golang.org&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
</content>
</entry>
<entry>
<title>all: replace strings.Index with strings.Contains where possible</title>
<updated>2016-02-19T01:06:05Z</updated>
<author>
<name>Nathan VanBenschoten</name>
<email>nvanbenschoten@gmail.com</email>
</author>
<published>2015-12-22T07:40:47Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=b04f3b06ec347543b0eafe82dcfb0e05885d3feb'/>
<id>urn:sha1:b04f3b06ec347543b0eafe82dcfb0e05885d3feb</id>
<content type='text'>
Change-Id: Ia613f1c37bfce800ece0533a5326fca91d99a66a
Reviewed-on: https://go-review.googlesource.com/18120
Reviewed-by: Robert Griesemer &lt;gri@golang.org&gt;
Run-TryBot: Robert Griesemer &lt;gri@golang.org&gt;
</content>
</entry>
<entry>
<title>testing: use debug.SetTraceback("all") to show all goroutines at test timeout</title>
<updated>2015-12-18T20:51:32Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2015-12-18T16:24:55Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=57337da16995e7dc31da724d0789f2801aa8c959'/>
<id>urn:sha1:57337da16995e7dc31da724d0789f2801aa8c959</id>
<content type='text'>
Fixes #13681.

Change-Id: I308930f4d9200fbe0f09cd08c38392ca1bb0db67
Reviewed-on: https://go-review.googlesource.com/18044
Reviewed-by: Brad Fitzpatrick &lt;bradfitz@golang.org&gt;
Reviewed-by: Austin Clements &lt;austin@google.com&gt;
</content>
</entry>
<entry>
<title>runtime/debug: implement Stack using runtime.Stack</title>
<updated>2015-09-16T11:36:21Z</updated>
<author>
<name>David Crawshaw</name>
<email>crawshaw@golang.org</email>
</author>
<published>2015-09-15T21:16:38Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=2d697b2401f5a840cdf4a58b414395fc729a348c'/>
<id>urn:sha1:2d697b2401f5a840cdf4a58b414395fc729a348c</id>
<content type='text'>
Fixes #12363

Change-Id: I1a025ab6a1cbd5a58f5c2bce5416788387495428
Reviewed-on: https://go-review.googlesource.com/14604
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
Run-TryBot: David Crawshaw &lt;crawshaw@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>build: move package sources from src/pkg to src</title>
<updated>2014-09-08T04:08:51Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2014-09-08T04:08:51Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=c007ce824d9a4fccb148f9204e04c23ed2984b71'/>
<id>urn:sha1:c007ce824d9a4fccb148f9204e04c23ed2984b71</id>
<content type='text'>
Preparation was in CL 134570043.
This CL contains only the effect of 'hg mv src/pkg/* src'.
For more about the move, see golang.org/s/go14nopkg.
</content>
</entry>
</feed>
