Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
badcode/ | H | 20-Feb-2020 | - | 128 | 82 | |
creat/ | H | 20-Feb-2020 | - | 147 | 94 | |
fts/ | H | 20-Feb-2020 | - | 110 | 66 | |
link/ | H | 20-Feb-2020 | - | 154 | 102 | |
lockf/ | H | 20-Feb-2020 | - | 141 | 97 | |
lockf2/ | H | 20-Feb-2020 | - | 108 | 58 | |
mkdir/ | H | 20-Feb-2020 | - | 142 | 88 | |
mkfifo/ | H | 20-Feb-2020 | - | 153 | 104 | |
mmap/ | H | 20-Feb-2020 | - | 132 | 74 | |
openat/ | H | 20-Feb-2020 | - | 863 | 710 | |
pty/ | H | 20-Feb-2020 | - | 120 | 76 | |
rename/ | H | 20-Feb-2020 | - | 151 | 101 | |
run/ | H | 20-Feb-2020 | - | 129 | 81 | |
rw/ | H | 20-Feb-2020 | - | 188 | 131 | |
shm/ | H | 20-Feb-2020 | - | 194 | 141 | |
socket/ | H | 20-Feb-2020 | - | 128 | 81 | |
swap/ | H | 20-Feb-2020 | - | 137 | 86 | |
symlink/ | H | 20-Feb-2020 | - | 144 | 92 | |
syscall/ | H | 20-Feb-2020 | - | 162 | 109 | |
sysctl/ | H | 20-Feb-2020 | - | 70 | 29 | |
tcp/ | H | 20-Feb-2020 | - | 186 | 128 | |
thr1/ | H | 20-Feb-2020 | - | 84 | 42 | |
thr2/ | H | 20-Feb-2020 | - | 102 | 56 | |
udp/ | H | 20-Feb-2020 | - | 120 | 78 | |
Makefile | H A D | 20-Feb-2020 | 231 | 30 | 26 | |
Makefile.inc | H A D | 20-Feb-2020 | 139 | 8 | 5 | |
README | H A D | 20-Feb-2020 | 326 | 12 | 8 |
README
1$FreeBSD$ 2 3All test programs must implement these three procedures: 4 5int setup(int nb) 6void cleanup(void) 7int test(void) 8 9The setup() procedure is called once before test() is called multiple times 10until timeout. After timeout cleanup() is called. 11test() should periodically test the global variable done_testing and return. 12