| // 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. |
| // Futex is only available on Dragonfly, FreeBSD and Linux. |
| // The race detector emits calls to split stack functions so it breaks the test. |
| // +build dragonfly freebsd linux |
| func TestFutexsleep(t *testing.T) { |
| Futexsleep(&dummy, 0, (1<<31+100)*1e9) |
| t.Errorf("futexsleep finished early after %s!", time.Since(start)) |
| case <-time.After(time.Second): |