mirror of
https://github.com/golang/go
synced 2024-11-27 05:51:17 -07:00
runtime: fix futexsleep test on freebsd/386
Fixes #7194. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/72310043
This commit is contained in:
parent
e09ac3cf2a
commit
a594f7ddd7
@ -2,33 +2,70 @@
|
|||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// Futex is only available on Dragonfly, FreeBSD and Linux.
|
// Futex is only available on DragonFly BSD, FreeBSD and Linux.
|
||||||
// The race detector emits calls to split stack functions so it breaks the test.
|
// The race detector emits calls to split stack functions so it breaks
|
||||||
|
// the test.
|
||||||
|
|
||||||
// +build dragonfly freebsd linux
|
// +build dragonfly freebsd linux
|
||||||
// +build !race
|
// +build !race
|
||||||
|
|
||||||
package runtime_test
|
package runtime_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "runtime"
|
"runtime"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type futexsleepTest struct {
|
||||||
|
mtx uint32
|
||||||
|
ns int64
|
||||||
|
msg string
|
||||||
|
ch chan futexsleepTest
|
||||||
|
}
|
||||||
|
|
||||||
|
var futexsleepTests = []futexsleepTest{
|
||||||
|
beforeY2038: {mtx: 0, ns: 86400 * 1e9, msg: "before the year 2038", ch: make(chan futexsleepTest, 1)},
|
||||||
|
afterY2038: {mtx: 0, ns: (1<<31 + 100) * 1e9, msg: "after the year 2038", ch: make(chan futexsleepTest, 1)},
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
beforeY2038 = iota
|
||||||
|
afterY2038
|
||||||
|
)
|
||||||
|
|
||||||
func TestFutexsleep(t *testing.T) {
|
func TestFutexsleep(t *testing.T) {
|
||||||
ch := make(chan bool, 1)
|
|
||||||
var dummy uint32
|
|
||||||
start := time.Now()
|
start := time.Now()
|
||||||
go func() {
|
for _, tt := range futexsleepTests {
|
||||||
Entersyscall()
|
go func(tt futexsleepTest) {
|
||||||
Futexsleep(&dummy, 0, (1<<31+100)*1e9)
|
runtime.Entersyscall()
|
||||||
Exitsyscall()
|
runtime.Futexsleep(&tt.mtx, tt.mtx, tt.ns)
|
||||||
ch <- true
|
runtime.Exitsyscall()
|
||||||
}()
|
tt.ch <- tt
|
||||||
select {
|
}(tt)
|
||||||
case <-ch:
|
}
|
||||||
t.Errorf("futexsleep finished early after %s!", time.Since(start))
|
loop:
|
||||||
case <-time.After(time.Second):
|
for {
|
||||||
Futexwakeup(&dummy, 1)
|
select {
|
||||||
|
case tt := <-futexsleepTests[beforeY2038].ch:
|
||||||
|
t.Errorf("futexsleep test %q finished early after %s", tt.msg, time.Since(start))
|
||||||
|
break loop
|
||||||
|
case tt := <-futexsleepTests[afterY2038].ch:
|
||||||
|
// Looks like FreeBSD 10 kernel has changed
|
||||||
|
// the semantics of timedwait on userspace
|
||||||
|
// mutex to make broken stuff look broken.
|
||||||
|
switch {
|
||||||
|
case runtime.GOOS == "freebsd" && runtime.GOARCH == "386":
|
||||||
|
t.Log("freebsd/386 may not work correctly after the year 2038, see golang.org/issue/7194")
|
||||||
|
default:
|
||||||
|
t.Errorf("futexsleep test %q finished early after %s", tt.msg, time.Since(start))
|
||||||
|
break loop
|
||||||
|
}
|
||||||
|
case <-time.After(time.Second):
|
||||||
|
break loop
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for _, tt := range futexsleepTests {
|
||||||
|
runtime.Futexwakeup(&tt.mtx, 1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user