summaryrefslogtreecommitdiffstats
path: root/regress/lib/libpthread (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Add a test for recursive pthread_mutex_trylock()uwe2011-09-231-10/+33
| | | | ok guenther@
* add connect and move include to top Makefile.incfgsch2011-09-189-17/+12
|
* test for interrupted connect.fgsch2011-09-182-0/+65
|
* first round of tests to check system calls restarting with pthreads.fgsch2011-09-1317-8/+500
| | | | guenther@ ok
* Use sizeof(double) instead of hardcoding 8.miod2010-12-261-3/+3
|
* Use CHECKx macro and enable setsockopt tests.fgsch2010-01-033-9/+9
|
* Add tests to check timeout on sockets under different situations. kurt@ ok.fgsch2009-12-2610-0/+415
|
* Return the proper values upon failure per POSIX for pthread_sigmask(3) andkurt2008-04-241-4/+7
| | | | | | | sigprocmask(2) in threaded programs. From Philip Guenther <guenther at sendmail.com> via PR library/5795. okay marc@
* add blocked_shutdownkurt2006-10-131-3/+3
|
* Test shutdown() racing with other threads using the same filekurt2006-10-132-0/+120
| | | | | descriptor, with some of them blocking on data that will never arrive.
* eliminate warnings on 64bit archskurt2006-10-064-24/+24
|
* correct check for proper return value of dup2kurt2006-10-032-4/+4
|
* add blocked_close, blocked_dup2, close_race and dup2_racekurt2006-09-221-2/+3
|
* Test dup2() racing with other threads using the same filekurt2006-09-222-0/+86
| | | | descriptor.
* Test close() racing with other threads using the same filekurt2006-09-222-0/+83
| | | | descriptor.
* Test dup2() racing with other threads using the same filekurt2006-09-222-0/+123
| | | | | descriptor, with some of them blocking on data that will never arrive.
* Test close() racing with other threads using the same filekurt2006-09-222-0/+119
| | | | | descriptor, with some of them blocking on data that will never arrive.
* fix regression test, from arttedu2006-01-051-2/+4
|
* after mutex_unlock, there's no guarantee that a waiting thread willtedu2005-12-191-1/+2
| | | | start running. calling pthread_yield makes test pass with rthreads
* zap unused var.fgsch2005-11-051-2/+1
|
* and panic if fork(2) fails.fgsch2005-10-311-1/+3
|
* enter pthread_atforkfgsch2005-10-311-2/+3
|
* pthread_atfork(3) regression.fgsch2005-10-312-0/+123
|
* -Wall cleanup.fgsch2005-10-304-10/+19
|
* define REGRESS_ROOT_TARGETS for tests that require root privilegesdavid2004-12-291-6/+5
| | | | rename the target so it shows up nicer in the log file and whitespace cleaning
* update comment about disabled tests; ok marc@david2004-07-101-2/+2
|
* remove test that sometimes fails until problem is understoodmarc2004-06-111-2/+2
|
* remove test that always fails from makefilemarc2004-03-071-2/+2
|
* kill bad functions; some sort of ok from marc who is trying to confuse mederaadt2004-02-282-5/+5
|
* NO SPRINTF!deraadt2004-02-271-3/+5
|
* regression for pthread version of closefrommarc2004-01-153-2/+55
|
* Update regression test to match current library semantics. A selectmarc2004-01-081-3/+5
| | | | | is supposed to fail with EBADF if another thread closes the fd/socket that is being selected.
* Use getopt(3) correctly.miod2003-12-231-8/+4
|
* openbsd tagmarc2003-11-271-1/+2
|
* Reduce iterations so test runs faster.marc2003-11-271-2/+2
|
* from marc:henning2003-09-181-4/+4
| | | | | | | | brad@ reported that the libpthread execve regression test failed on alpha and macppc. The test was somewhat bogus and depended upon the compiler picking the global when a global and local were named the same. Anyway, this patch should fix it. Tested on Henning's alpha (bet he forgot he gave me an account :-), i386, and sparc64.
* add missing includesdavid2003-09-021-1/+2
| | | | ok deraadt@ tedu@ dhartmei@ krw@
* various cleanups; david says results are samederaadt2003-07-3132-195/+180
|
* improve test. fails with current codemarc2003-07-141-3/+32
|
* Add sigmask testmarc2003-07-101-2/+2
|
* Add test to ensure that a masked signal with a default action ofmarc2003-07-102-0/+37
| | | | | terminate process doesn't terminate the process. It will until a libpthread fix is verify and commited.
* Give some feedback during the pthread_cond_timedwait testmarc2003-07-081-20/+28
|
* free memory allocated by asprintf; ok marcopvalchev2003-06-192-2/+4
|
* no nomanmickey2003-06-161-3/+1
|
* clean up the testall targetmarc2003-02-051-4/+4
|
* add stdfiles test for proper fd handlingmarc2003-02-051-2/+2
|
* Add test to compare threaded vs non-threaded fd handling.marc2003-02-042-0/+162
| | | | Test not enabled (yet).
* add "testall" target for development testingmarc2003-01-301-2/+31
|
* Another incorrect regression test. POSIX specifies that signalmarc2003-01-271-3/+10
| | | | | | | | handlers will be called with the current signal masked unless the handler was installed with the SA_NODEFER flag. The test did not check this (and the pthread code was incorrect by not setting the mask). This fixes the test. The pthread lib part of the fix will be made in a short while. Untill then the test will fail.
* remove bogus commentmarc2003-01-261-10/+1
|