]> Cypherpunks repositories - gostls13.git/commitdiff
syscall: do not run TestSyscallAllocations in parallel with other tests
authorRuss Cox <rsc@golang.org>
Wed, 20 Nov 2024 15:53:16 +0000 (10:53 -0500)
committerGopher Robot <gobot@golang.org>
Wed, 20 Nov 2024 16:16:51 +0000 (16:16 +0000)
Fixes #70327.

Change-Id: I27ee0d1fbae73fb5c22aa699f4e3110c67bc9ea2
Reviewed-on: https://go-review.googlesource.com/c/go/+/630136
Auto-Submit: Russ Cox <rsc@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
src/syscall/syscall_windows_test.go

index 63409daf044f06aabda9ba2cf953f7e4a0b381ef..882a279692cc9165f1c3f5d2135363465601b5bf 100644 (file)
@@ -230,8 +230,6 @@ func TestGetStartupInfo(t *testing.T) {
 func TestSyscallAllocations(t *testing.T) {
        testenv.SkipIfOptimizationOff(t)
 
-       t.Parallel()
-
        // Test that syscall.SyscallN arguments do not escape.
        // The function used (in this case GetVersion) doesn't matter
        // as long as it is always available and doesn't panic.