| Server IP : 192.241.186.36 / Your IP : 216.73.216.164 Web Server : Apache/2.4.29 (Ubuntu) System : Linux webserver7 4.15.0-194-generic #205-Ubuntu SMP Fri Sep 16 19:49:27 UTC 2022 x86_64 User : root ( 0) PHP Version : 7.4.32 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/go/src/syscall/ |
Upload File : |
// Copyright 2018 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 freebsd
// +build freebsd
package syscall_test
import (
"fmt"
"syscall"
"testing"
"unsafe"
)
func TestConvertFromDirent11(t *testing.T) {
const (
filenameFmt = "%04d"
numFiles = 64
fixedHdrSize = int(unsafe.Offsetof(syscall.Dirent_freebsd11{}.Name))
)
namlen := len(fmt.Sprintf(filenameFmt, 0))
reclen := syscall.Roundup(fixedHdrSize+namlen+1, 4)
old := make([]byte, numFiles*reclen)
for i := 0; i < numFiles; i++ {
dent := syscall.Dirent_freebsd11{
Fileno: uint32(i + 1),
Reclen: uint16(reclen),
Type: syscall.DT_REG,
Namlen: uint8(namlen),
}
rec := make([]byte, reclen)
copy(rec, (*[fixedHdrSize]byte)(unsafe.Pointer(&dent))[:])
copy(rec[fixedHdrSize:], fmt.Sprintf(filenameFmt, i+1))
copy(old[i*reclen:], rec)
}
buf := make([]byte, 2*len(old))
n := syscall.ConvertFromDirents11(buf, old)
names := make([]string, 0, numFiles)
_, _, names = syscall.ParseDirent(buf[:n], -1, names)
if len(names) != numFiles {
t.Errorf("expected %d files, have %d; names: %q", numFiles, len(names), names)
}
for i, name := range names {
if expected := fmt.Sprintf(filenameFmt, i+1); name != expected {
t.Errorf("expected names[%d] to be %q; got %q", i, expected, name)
}
}
}