It is observed to be flaky on the only openbsd/arm builder.
Skipping on that platform until someone can investigate.
For #50218
Change-Id: Id3a6dc12b93b3cec67870d8d81bd608c4589c952
Reviewed-on: https://go-review.googlesource.com/c/go/+/372794
Trust: Bryan Mills <bcmills@google.com>
Run-TryBot: Bryan Mills <bcmills@google.com>
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
"bytes"
"fmt"
"internal/profile"
+ "internal/testenv"
"io"
"net/http"
"net/http/httptest"
}
func TestDeltaProfile(t *testing.T) {
+ if runtime.GOOS == "openbsd" && runtime.GOARCH == "arm" {
+ testenv.SkipFlaky(t, 50218)
+ }
+
rate := runtime.SetMutexProfileFraction(1)
defer func() {
runtime.SetMutexProfileFraction(rate)