summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/futex_test.go
blob: 51f4d0f120bd374dcb28478c255035dc2e4d24a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2013 The Go Authors.  All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build linux freebsd

package runtime_test

import (
	. "runtime"
	"testing"
	"time"
)

func TestFutexsleep(t *testing.T) {
	ch := make(chan bool, 1)
	var dummy uint32
	start := time.Now()
	go func() {
		Entersyscall()
		Futexsleep(&dummy, 0, (1<<31+100)*1e9)
		Exitsyscall()
		ch <- true
	}()
	select {
	case <-ch:
		t.Errorf("futexsleep finished early after %s!", time.Since(start))
	case <-time.After(time.Second):
		Futexwakeup(&dummy, 1)
	}
}