summaryrefslogtreecommitdiffstats
path: root/regress/sys/kern/syscall_segment (follow)
Commit message (Collapse)AuthorAgeFilesLines
* These regress test expect coredumps as an effect of the test so runclaudio2021-02-092-4/+4
| | | | | the tests with ulimit -c unlimited to make sure coredumps are written. OK bluhm@ deraadt@
* Fix building the library when invoked with make regress.bluhm2020-10-211-1/+3
| | | | OK patrick@
* Add arm64 support.kettenis2020-10-202-4/+6
| | | | ok deraadt@
* Implement propper handling for make clean and obj.bluhm2020-10-165-23/+29
|
* rename binaries to differentiate failure cases (in dmesg output) betweenderaadt2019-12-024-6/+6
| | | | | | the two cases "syscall in main program" (will succeed until we fix go) and "syscall in library" (now properly fails) ok mortimer
* Add regress tests for making syscalls from the main program text and frommortimer2019-11-279-0/+97
a shared library. ok deraadt