Name Date Size #Lines LOC

..08-May-2022-

MakefileH A D08-May-20223 KiB11676

READMEH A D08-May-20221.3 KiB2519

hello_b.cH A D08-May-2022330 145

hello_d.cH A D08-May-2022742 3924

hello_d.expH A D08-May-202212 21

hello_s.cH A D08-May-2022944 4830

join_leak_d.cH A D08-May-20223.1 KiB10954

join_leak_d.expH A D08-May-202220 32

mutex_d.cH A D08-May-202242.2 KiB1,552976

mutex_d.expH A D08-May-202213.9 KiB291282

propagate_s.plH A D08-May-20222.6 KiB7534

sem_d.cH A D08-May-20223.6 KiB13473

sem_d.expH A D08-May-2022300 2322

sigsuspend_d.cH A D08-May-20227.8 KiB282163

sigsuspend_d.expH A D08-May-2022344 98

sigwait_d.cH A D08-May-20228.7 KiB300166

sigwait_d.expH A D08-May-2022258 1110

verifyH A D08-May-202211.1 KiB475359

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