diff options
| author | Michael Anthony Knyszek <mknyszek@google.com> | 2025-09-11 23:48:04 +0000 |
|---|---|---|
| committer | Michael Knyszek <mknyszek@google.com> | 2025-09-15 14:21:33 -0700 |
| commit | 004858ccddb2f092d3413e96ba8526a8df8e3906 (patch) | |
| tree | 4dd8105c7243cd66c3850ba405b4747995088b65 /src/syscall | |
| parent | dbde15800c97e425f4ad1b47c1ee0c302f963fb5 (diff) | |
| download | go-004858ccddb2f092d3413e96ba8526a8df8e3906.tar.xz | |
all: replace os.Getenv("GO_BUILDER_NAME") with testenv.Builder in tests
Some tests still reach for GO_BUILDER_NAME directly. This change makes
it so that they go through testenv.Builder.
There are a couple more, but changing them may also cause tests to start
failing. Done in a follow-up.
Change-Id: Id2453b7b62f5ebf3594e92fa53724a577a97440f
Reviewed-on: https://go-review.googlesource.com/c/go/+/703135
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/syscall')
| -rw-r--r-- | src/syscall/getdirentries_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syscall/getdirentries_test.go b/src/syscall/getdirentries_test.go index b5361ddaef..f879e2a539 100644 --- a/src/syscall/getdirentries_test.go +++ b/src/syscall/getdirentries_test.go @@ -8,6 +8,7 @@ package syscall_test import ( "fmt" + "internal/testenv" "os" "path/filepath" "slices" @@ -24,7 +25,7 @@ func TestGetdirentries(t *testing.T) { } } func testGetdirentries(t *testing.T, count int) { - if count > 100 && testing.Short() && os.Getenv("GO_BUILDER_NAME") == "" { + if count > 100 && testing.Short() && testenv.Builder() == "" { t.Skip("skipping in -short mode") } d := t.TempDir() |
