summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/sys/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove 3 expected failures those got fixed in the regress code.claudio2023-10-311-4/+1
|
* Enable waitid(2) regress tests and a new test derived from NetBSD'skettenis2022-10-261-1/+2
| | | | | | wait6(2) tests. ok millert@, deraadt@
* Add regression tests for the sendmmsg and recvmmsg system calls.mbuhl2022-09-111-1/+3
|
* t_syscall was a test for the gcc 1.x off_t syscall padding,guenther2022-01-061-2/+2
| | | | | which was an implementation detail and has been deleted, so delete the test
* At least t_fork and t_vfork tests need coredumps enabled to succeed.claudio2021-09-191-1/+2
| | | | | | Add ulimit -c unlimited before running the tests like it is done in other places in regress. OK bluhm@
* Disable tests that don't work in bluhms regress framework.mbuhl2021-09-041-1/+7
|
* Enable vfork syscall test. Disable SIGSTOP test as it is masked untilmbuhl2021-09-021-1/+7
| | | | | exec/exit with vfork. OK bluhm@
* Import more NetBSD system call regression tests.mbuhl2021-09-021-5/+30
| | | | OK bluhm@
* Remove echo headlines.bluhm2020-12-171-2/+1
|
* Enable t_mmap-1 test. It is skipped on NetBSD, but works for us.bluhm2020-12-061-2/+1
|
* Run the atf cleanup block after each test. This makes more testsbluhm2020-11-111-9/+11
| | | | pass when run as non root.
* Declare prototype of __syscall locally. Fixes t_syscall test.bluhm2020-11-101-2/+1
|
* Sync libc syscall tests with changes in upstream NetBSD. Use #ifdefbluhm2020-11-091-16/+27
| | | | | | | to document differences to NetBSD behaviour, this helps to track upstream. Mark currently failing test as expected failures. So test programs get compiled and executed, but it shows that further investigation is necceassry.
* Use std=gnu99 to be able to build the tests with both base clang and gcc.mpi2020-10-061-1/+3
|
* Add missing new line to printf. Make clean should not require SUDO.bluhm2020-02-021-3/+1
|
* Enable t_ptrace with an errno change compared to NetBSD.mpi2020-01-301-6/+8
| | | | | | | | Note that the last test triggers a kernel bug related to waitpid(9) and ptraced processes. This is now visible thanks to recent make(1) changes. guenther@ suggests to look at the logic behind `p_orphan' in FreeBSD to fix this bug.
* Make clean should not require SUDO.bluhm2020-01-131-3/+1
|
* Import NetBSD system call regression tests. They were written withbluhm2019-11-191-0/+104
ATF (Automated Testing Framework), so we use a small wrapper to map it to our bsd.regress.mk framework. Only half of the 80 NetBSD tests have been taken, the others need more work to adapt. Of them 34 syscall tests pass. Moritz Buhl ported the tests to OpenBSD.