Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
Makefile | H A D | 16-Jan-2021 | 3 KiB | 116 | 76 | |
README | H A D | 14-Nov-2019 | 1.3 KiB | 25 | 19 | |
hello_b.c | H A D | 08-Dec-2020 | 330 | 14 | 5 | |
hello_d.c | H A D | 08-Dec-2020 | 742 | 39 | 24 | |
hello_d.exp | H A D | 20-Jan-2019 | 12 | 2 | 1 | |
hello_s.c | H A D | 08-Dec-2020 | 944 | 48 | 30 | |
join_leak_d.c | H A D | 20-Jan-2019 | 3.1 KiB | 109 | 54 | |
join_leak_d.exp | H A D | 20-Jan-2019 | 20 | 3 | 2 | |
mutex_d.c | H A D | 14-Nov-2019 | 42.2 KiB | 1,552 | 976 | |
mutex_d.exp | H A D | 20-Jan-2019 | 13.9 KiB | 291 | 282 | |
propagate_s.pl | H A D | 14-Nov-2019 | 2.6 KiB | 75 | 34 | |
sem_d.c | H A D | 20-Jan-2019 | 3.6 KiB | 134 | 73 | |
sem_d.exp | H A D | 20-Jan-2019 | 300 | 23 | 22 | |
sigsuspend_d.c | H A D | 14-Nov-2019 | 7.8 KiB | 282 | 163 | |
sigsuspend_d.exp | H A D | 20-Jan-2019 | 344 | 9 | 8 | |
sigwait_d.c | H A D | 14-Nov-2019 | 8.7 KiB | 300 | 166 | |
sigwait_d.exp | H A D | 20-Jan-2019 | 258 | 11 | 10 | |
verify | H A D | 14-Nov-2019 | 11.1 KiB | 475 | 359 |
README
1$FreeBSD: src/lib/libc_r/test/README,v 1.1.2.1 2000/07/17 22:18:32 jasone Exp $ 2 3This test suite is meant to test general functionality of pthreads, as well as 4provide a simple framework for regression tests. In general, this test suite 5can be used with any pthreads library. 6 7There are two forms of test that the 'verify' script understands. The simpler 8form is the diff format, where the output of the test program is diff'ed with 9the correspondingly named .exp file. If there is diff output, the test fails. 10The sequence test format is somewhat more complex, and is documented in the 11command line usage output for verify. The advantage of this format is that it 12allows multiple tests to pass/fail within one program. 13 14There is no driving need for test naming consistency, but the existing tests 15generally follow these conventions: 16 17<name>_d.c <name>_d.exp : Diff mode C test and expected output file. 18<name>_s.c : Sequence mode C test. 19<name>_b*.c : Back end C program used by perl tests. 20<name>_d.pl <name>_d.pl.exp : Diff mode perl test and expected output file. 21<name>_s.pl : Sequence mode perl test. 22 23<name> is something descriptive, such as "pr14685" in the case of a PR-related 24regression test, or "mutex" in the case of a test of mutexes. 25