]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/go: check checkCounters counter read only on supported platforms
authorHana (Hyang-Ah) Kim <hyangah@gmail.com>
Fri, 8 Mar 2024 21:23:36 +0000 (16:23 -0500)
committerHyang-Ah Hana Kim <hyangah@gmail.com>
Sat, 9 Mar 2024 04:24:30 +0000 (04:24 +0000)
Telemetry counters writing is disabled on certain platforms.
See x/telemetry/internal/telemetry.DisabledOnPlatform.

For #66205

Change-Id: I833e15ae33fb27e09d67fc77b921498476237176
Reviewed-on: https://go-review.googlesource.com/c/go/+/570196
Reviewed-by: Michael Matloob <matloob@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>

src/cmd/go/script_test.go

index 6daa5d9e9abf1313918893fa27c47ce44129018f..d36de720cd4e39db97e168f4da8032e72b6b6ccb 100644 (file)
@@ -411,7 +411,7 @@ func checkCounters(t *testing.T, telemetryDir string) {
        })
        counters := readCounters(t, telemetryDir)
        if _, ok := scriptGoInvoked.Load(testing.TB(t)); ok {
-               if len(counters) == 0 {
+               if !disabledOnPlatform && len(counters) == 0 {
                        t.Fatal("go was invoked but no counters were incremented")
                }
        }
@@ -422,3 +422,19 @@ func checkCounters(t *testing.T, telemetryDir string) {
                }
        }
 }
+
+// Copied from https://go.googlesource.com/telemetry/+/5f08a0cbff3f/internal/telemetry/mode.go#122
+// TODO(go.dev/issues/66205): replace this with the public API once it becomes available.
+//
+// disabledOnPlatform indicates whether telemetry is disabled
+// due to bugs in the current platform.
+const disabledOnPlatform = false ||
+       // The following platforms could potentially be supported in the future:
+       runtime.GOOS == "openbsd" || // #60614
+       runtime.GOOS == "solaris" || // #60968 #60970
+       runtime.GOOS == "android" || // #60967
+       runtime.GOOS == "illumos" || // #65544
+       // These platforms fundamentally can't be supported:
+       runtime.GOOS == "js" || // #60971
+       runtime.GOOS == "wasip1" || // #60971
+       runtime.GOOS == "plan9" // https://github.com/golang/go/issues/57540#issuecomment-1470766639