aboutsummaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
authorBryan C. Mills <bcmills@google.com>2023-02-02 10:09:39 -0500
committerGopher Robot <gobot@golang.org>2023-02-02 20:21:33 +0000
commitfc86770d87360ddf0346bf407a80935fe2dddec8 (patch)
treecc22d177082dd0e44890aa74e3eb3725967ae34c /src/runtime
parentfcd0e0963f3bdf289216c1083f1439a71dc571a4 (diff)
downloadgo-fc86770d87360ddf0346bf407a80935fe2dddec8.tar.xz
runtime: eliminate arbitrary timeout in TestCgoLockOSThreadExit
This test previously failed if running a new pthread took longer than a hard-coded 100ms. On some slow or heavily-loaded builders, that scheduling latency is too short. Since the point of this test is to verify that the background thread is not reused after it terminates (see #20395), the arbitrary time limit does not seem helpful: if the background thread fails to terminate the test will time out on its own, and if the main goroutine is scheduled on the background thread the test will fail regardless of how long it takes. Fixes #58247. Change-Id: I626af52aac55af7a4c0e7829798573c479750c20 Reviewed-on: https://go-review.googlesource.com/c/go/+/464735 Run-TryBot: Bryan Mills <bcmills@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> Auto-Submit: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/crash_test.go5
-rw-r--r--src/runtime/testdata/testprogcgo/lockosthread.go4
2 files changed, 5 insertions, 4 deletions
diff --git a/src/runtime/crash_test.go b/src/runtime/crash_test.go
index 309777d696..a2f0926599 100644
--- a/src/runtime/crash_test.go
+++ b/src/runtime/crash_test.go
@@ -49,6 +49,7 @@ func runTestProg(t *testing.T, binary, name string, env ...string) string {
}
testenv.MustHaveGoBuild(t)
+ t.Helper()
exe, err := buildTestProg(t, binary)
if err != nil {
@@ -135,13 +136,15 @@ func buildTestProg(t *testing.T, binary string, flags ...string) (string, error)
exe := filepath.Join(dir, name+".exe")
- t.Logf("running go build -o %s %s", exe, strings.Join(flags, " "))
+ start := time.Now()
cmd := exec.Command(testenv.GoToolPath(t), append([]string{"build", "-o", exe}, flags...)...)
+ t.Logf("running %v", cmd)
cmd.Dir = "testdata/" + binary
out, err := testenv.CleanCmdEnv(cmd).CombinedOutput()
if err != nil {
target.err = fmt.Errorf("building %s %v: %v\n%s", binary, flags, err, out)
} else {
+ t.Logf("built %v in %v", name, time.Since(start))
target.exe = exe
target.err = nil
}
diff --git a/src/runtime/testdata/testprogcgo/lockosthread.go b/src/runtime/testdata/testprogcgo/lockosthread.go
index 8fcea35f52..e6dce36fb3 100644
--- a/src/runtime/testdata/testprogcgo/lockosthread.go
+++ b/src/runtime/testdata/testprogcgo/lockosthread.go
@@ -94,7 +94,7 @@ func LockOSThreadAlt() {
// Exit with the thread locked.
}()
<-ready
- for i := 0; i < 100; i++ {
+ for {
time.Sleep(1 * time.Millisecond)
// Check that this goroutine is running on a different thread.
self := C.pthread_self()
@@ -107,6 +107,4 @@ func LockOSThreadAlt() {
return
}
}
- println("sub thread still running")
- os.Exit(1)
}