NameDateSize

..17-May-20199

guard_b.cH A D17-May-20194.6 KiB

guard_b.expH A D17-May-2019123

guard_s.plH A D17-May-20192.3 KiB

hello_b.cH A D17-May-2019331

hello_d.cH A D17-May-2019743

hello_d.expH A D17-May-2019101

hello_s.cH A D17-May-2019947

join_leak_d.cH A D17-May-20193.1 KiB

join_leak_d.expH A D17-May-2019113

MakefileH A D17-May-20193.1 KiB

mutex_d.cH A D17-May-201942.1 KiB

mutex_d.expH A D17-May-201914 KiB

propagate_s.plH A D17-May-20192.6 KiB

READMEH A D17-May-20191.5 KiB

sem_d.cH A D17-May-20193.6 KiB

sem_d.expH A D17-May-2019387

sigsuspend_d.cH A D17-May-20198 KiB

sigsuspend_d.expH A D17-May-2019438

sigwait_d.cH A D17-May-20198.7 KiB

sigwait_d.expH A D17-May-2019349

verifyH A D17-May-201911 KiB

README

1$FreeBSD: releng/10.3/lib/libkse/test/README 103412 2002-09-16 19:29:34Z mini $
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