Name Date Size #Lines LOC

..--

MakefileHD26-Jul-20153 KiB11777

READMEHD26-Jul-20151.4 KiB2922

guard_b.cHD26-Jul-20154.5 KiB15381

guard_b.expHD26-Jul-201546 53

guard_s.plHD26-Jul-20152.2 KiB7027

hello_b.cHD26-Jul-2015257 145

hello_d.cHD26-Jul-2015669 3924

hello_d.expHD26-Jul-201524 31

hello_s.cHD26-Jul-2015873 4830

join_leak_d.cHD26-Jul-20153 KiB10954

join_leak_d.expHD26-Jul-201532 42

mutex_d.cHD26-Jul-201542.1 KiB1,559979

mutex_d.expHD26-Jul-201513.9 KiB292282

propagate_s.plHD26-Jul-20152.5 KiB7534

sem_d.cHD26-Jul-20153.5 KiB13473

sem_d.expHD26-Jul-2015312 2422

sigsuspend_d.cHD26-Jul-20157.9 KiB291170

sigsuspend_d.expHD26-Jul-2015356 108

sigwait_d.cHD26-Jul-20158.6 KiB305170

sigwait_d.expHD26-Jul-2015270 1210

verifyHD26-Jul-201511 KiB475359

README

1$FreeBSD$
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, but in reality there are a number of
6libpthread-specific aspects to this test suite which would require some
7effort to get around if testing another pthreads library.
8
9This test suite assumes that libpthread is installed.
10
11There are two forms of test that the 'verify' script understands.  The simpler
12form is the diff format, where the output of the test program is diff'ed with
13the correspondingly named .exp file.  If there is diff output, the test fails.
14The sequence test format is somewhat more complex, and is documented in the
15command line usage output for verify.  The advantage of this format is that it
16allows multiple tests to pass/fail within one program.
17
18There is no driving need for test naming consistency, but the existing tests
19generally follow these conventions:
20
21<name>_d.c <name>_d.exp     : Diff mode C test and expected output file.
22<name>_s.c                  : Sequence mode C test.
23<name>_b*.c                 : Back end C program used by perl tests.
24<name>_d.pl <name>_d.pl.exp : Diff mode perl test and expected output file.
25<name>_s.pl                 : Sequence mode perl test.
26
27<name> is something descriptive, such as "pr14685" in the case of a PR-related
28regression test, or "mutex" in the case of a test of mutexes.
29