diff options
author | cvs2svn <admin@example.com> | 2025-04-14 17:32:06 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 2025-04-14 17:32:06 +0000 |
commit | eb8dd9dca1228af0cd132f515509051ecfabf6f6 (patch) | |
tree | edb6da6af7e865d488dc1a29309f1e1ec226e603 /src/regress/lib/libc/sys/README | |
parent | 247f0352e0ed72a4f476db9dc91f4d982bc83eb2 (diff) | |
download | openbsd-tb_20250414.tar.gz openbsd-tb_20250414.tar.bz2 openbsd-tb_20250414.zip |
This commit was manufactured by cvs2git to create tag 'tb_20250414'.tb_20250414
Diffstat (limited to '')
-rw-r--r-- | src/regress/lib/libc/sys/README | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/src/regress/lib/libc/sys/README b/src/regress/lib/libc/sys/README deleted file mode 100644 index 526832e5a7..0000000000 --- a/src/regress/lib/libc/sys/README +++ /dev/null | |||
@@ -1,71 +0,0 @@ | |||
1 | Regression tests for system calls ported from NetBSD. | ||
2 | |||
3 | Reimplement ATF with many hacks to adjust the tests as little as possible. | ||
4 | |||
5 | Tests passing without source file adjustments: | ||
6 | t_access t_getsockname t_msgctl t_sigaltstack | ||
7 | t_bind t_gettimeofday t_msgsnd t_socketpair | ||
8 | t_conect t_kill t_msync t_truncate | ||
9 | t_getgroups t_link t_pipe t_umask | ||
10 | t_getitimer t_listen t_ppoll t_write | ||
11 | t_getlogin t_minherit t_sendrecv | ||
12 | t_getpid t_mkdir t_setuid | ||
13 | t_getsid t_mkfifo t_sigaction | ||
14 | |||
15 | Tests passing after adjustments: | ||
16 | t_chroot - fchroot is not implemented | ||
17 | t_clock_gettime - requires sysctlbyname | ||
18 | t_dup - OpenBSD dup3 is similar to Linux dup3 | ||
19 | t_fork - add reallocarr function, remove clone(2) tests | ||
20 | t_fsync - replace mkstemp | ||
21 | t_getrusage - no expected fail, PR kern/30115 is NetBSD, work more | ||
22 | t_kevent - no EVFILT_USER, DRVCTLDEV, passing kqueue forbidden | ||
23 | t_mknod - remove tests for unsupported file types | ||
24 | t_msgget - remove msgget_limit test | ||
25 | t_poll - remove pollts_* tests | ||
26 | t_ptrace - change EPERM -> EINVAL for PT_ATTACH of a parent | ||
27 | t_revoke - remove basic tests, revoke only on ttys supported | ||
28 | t_select - remove sigset_t struct as it is int on OpenBSD | ||
29 | t_setrlimit - remove unsupported resource parameters and lwp | ||
30 | t_syscall - add __syscall prototype | ||
31 | t_vfork - SIGSTOP is masked before exec(3)/exit(3) | ||
32 | t_wait_noproc - waitid and wait6 are not implemented | ||
33 | t_wait_noproc_wnohang - waitid and wait6 are not implemented | ||
34 | |||
35 | Failing tests: | ||
36 | t_mlock - wrong errno, succeeds where not expected, POSIX imprecise | ||
37 | t_mmap - ENOTBLK on test NetBSD is skipping, remove mmap_va0 test | ||
38 | t_msgrcv - msgrcv(id, &r, 3 - 1, 0x41, 004000) != -1 | ||
39 | t_pipe2 - closefrom(4) == -1, remove F_GETNOSIGPIPE and nosigpipe test | ||
40 | t_stat - invalid GID with doas | ||
41 | t_unlink - wrong errno according to POSIX | ||
42 | |||
43 | Excluded tests: | ||
44 | t_clock_nanosleep - not available | ||
45 | t_clone - not available | ||
46 | t_futex_ops - no lwp | ||
47 | t_futex_robust - no lwp | ||
48 | t_getcontext - not available, removed in POSIX.1-2008 | ||
49 | t_getrandom - not available | ||
50 | t_issetugid - works as iplemented | ||
51 | t_lwp_create - not available | ||
52 | t_lwp_ctl - not available | ||
53 | t_mincore - removed | ||
54 | t_mprotect - no exec_prot_support and no return_one in libc | ||
55 | t_nanosleep - not available | ||
56 | t_pollts - not available | ||
57 | t_posix_fadvise - optional POSIX Advisory Information | ||
58 | t_posix_fallocate - optional POSIX Advisory Information | ||
59 | t_ptrace_sigchld - | ||
60 | t_ptrace_wait - | ||
61 | t_ptrace_wait3 - | ||
62 | t_ptrace_wait4 - | ||
63 | t_ptrace_wait6 - not implemented | ||
64 | t_ptrace_waitid - | ||
65 | t_ptrace_waitpid - | ||
66 | t_sigqueue - not implemented, added in POSIX.1-2004 | ||
67 | t_sigtimedwait - not implemented, added in POSIX.1-2004 | ||
68 | t_swapcontext - not available, removed in POSIX.1-2008 | ||
69 | t_timer_create - not implemented, added in POSIX.1-2004 | ||
70 | t_ucontext - not available, removed in POSIX.1-2008 | ||
71 | t_wait - wait6 is not available, not POSIX | ||