Files
sys/unix/fdset_test.go
Tobias Klauser 01aaa8342f all: simplify code by using modern Go constructs
Generated using modernize by running:

    go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./...

Change-Id: Ifc7d61cf6735cc53f2bdf890a338961f55075af5
Reviewed-on: https://go-review.googlesource.com/c/sys/+/661975
Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
2025-04-03 13:04:48 -07:00

64 lines
1.2 KiB
Go

// Copyright 2019 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.
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
package unix_test
import (
"testing"
"golang.org/x/sys/unix"
)
func TestFdSet(t *testing.T) {
var fdSet unix.FdSet
fdSet.Zero()
for fd := range unix.FD_SETSIZE {
if fdSet.IsSet(fd) {
t.Fatalf("Zero did not clear fd %d", fd)
}
fdSet.Set(fd)
}
for fd := range unix.FD_SETSIZE {
if !fdSet.IsSet(fd) {
t.Fatalf("IsSet(%d): expected true, got false", fd)
}
}
fdSet.Zero()
for fd := range unix.FD_SETSIZE {
if fdSet.IsSet(fd) {
t.Fatalf("Zero did not clear fd %d", fd)
}
}
for fd := 1; fd < unix.FD_SETSIZE; fd += 2 {
fdSet.Set(fd)
}
for fd := range unix.FD_SETSIZE {
if fd&0x1 == 0x1 {
if !fdSet.IsSet(fd) {
t.Fatalf("IsSet(%d): expected true, got false", fd)
}
} else {
if fdSet.IsSet(fd) {
t.Fatalf("IsSet(%d): expected false, got true", fd)
}
}
}
for fd := 1; fd < unix.FD_SETSIZE; fd += 2 {
fdSet.Clear(fd)
}
for fd := range unix.FD_SETSIZE {
if fdSet.IsSet(fd) {
t.Fatalf("Clear(%d) did not clear fd", fd)
}
}
}