Skip to content

Commit 7e5331a

Browse files
committed
runtime: skip TestTimePprof on illumos
On illumos nanotime calls libc, like on the other systems for which TestTimePprof is skipped. For #43118 Change-Id: I370d3f098a261185920cb1e3e3402d16200e301a Reviewed-on: https://go-review.googlesource.com/c/go/+/366737 Trust: Tobias Klauser <[email protected]> Run-TryBot: Tobias Klauser <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent 5527d7f commit 7e5331a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/crash_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ func TestTimePprof(t *testing.T) {
717717
// This test is unreliable on any system in which nanotime
718718
// calls into libc.
719719
switch runtime.GOOS {
720-
case "aix", "darwin", "openbsd", "solaris":
720+
case "aix", "darwin", "illumos", "openbsd", "solaris":
721721
t.Skipf("skipping on %s because nanotime calls libc", runtime.GOOS)
722722
}
723723

0 commit comments

Comments
 (0)