mirror of
https://github.com/golang/sys.git
synced 2026-02-08 03:36:03 +03:00
Add Set, Clear, IsSet and Zero methods to manipulate an *FdSet. These implement the same functionality as the FD_SET, FD_CLR, FD_ISSET and FD_ZERO macros in <sys/select.h>. Change-Id: I6b7bccb98e58ee5e719096ed5743f6edcd232840 Reviewed-on: https://go-review.googlesource.com/c/sys/+/205397 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
86 lines
1.7 KiB
Go
86 lines
1.7 KiB
Go
// Copyright 2017 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 solaris
|
|
|
|
package unix_test
|
|
|
|
import (
|
|
"os"
|
|
"os/exec"
|
|
"testing"
|
|
"time"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func TestSelect(t *testing.T) {
|
|
n, err := unix.Select(0, nil, nil, nil, &unix.Timeval{Sec: 0, Usec: 0})
|
|
if err != nil {
|
|
t.Fatalf("Select: %v", err)
|
|
}
|
|
if n != 0 {
|
|
t.Fatalf("Select: expected 0 ready file descriptors, got %v", n)
|
|
}
|
|
|
|
dur := 150 * time.Millisecond
|
|
tv := unix.NsecToTimeval(int64(dur))
|
|
start := time.Now()
|
|
n, err = unix.Select(0, nil, nil, nil, &tv)
|
|
took := time.Since(start)
|
|
if err != nil {
|
|
t.Fatalf("Select: %v", err)
|
|
}
|
|
if n != 0 {
|
|
t.Fatalf("Select: expected 0 ready file descriptors, got %v", n)
|
|
}
|
|
|
|
if took < dur {
|
|
t.Errorf("Select: timeout should have been at least %v, got %v", dur, took)
|
|
}
|
|
|
|
rr, ww, err := os.Pipe()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer rr.Close()
|
|
defer ww.Close()
|
|
|
|
if _, err := ww.Write([]byte("HELLO GOPHER")); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
rFdSet := &unix.FdSet{}
|
|
fd := int(rr.Fd())
|
|
rFdSet.Set(fd)
|
|
|
|
n, err = unix.Select(fd+1, rFdSet, nil, nil, nil)
|
|
if err != nil {
|
|
t.Fatalf("Select: %v", err)
|
|
}
|
|
if n != 1 {
|
|
t.Fatalf("Select: expected 1 ready file descriptors, got %v", n)
|
|
}
|
|
}
|
|
|
|
func TestStatvfs(t *testing.T) {
|
|
if err := unix.Statvfs("", nil); err == nil {
|
|
t.Fatal(`Statvfs("") expected failure`)
|
|
}
|
|
|
|
statvfs := unix.Statvfs_t{}
|
|
if err := unix.Statvfs("/", &statvfs); err != nil {
|
|
t.Errorf(`Statvfs("/") failed: %v`, err)
|
|
}
|
|
|
|
if t.Failed() {
|
|
mount, err := exec.Command("mount").CombinedOutput()
|
|
if err != nil {
|
|
t.Logf("mount: %v\n%s", err, mount)
|
|
} else {
|
|
t.Logf("mount: %s", mount)
|
|
}
|
|
}
|
|
}
|