summaryrefslogtreecommitdiff
path: root/regress/lib/libpthread
AgeCommit message (Collapse)Author
2004-12-29define REGRESS_ROOT_TARGETS for tests that require root privilegesDavid Krause
rename the target so it shows up nicer in the log file and whitespace cleaning
2004-07-10update comment about disabled tests; ok marc@David Krause
2004-06-11remove test that sometimes fails until problem is understoodMarco S Hyman
2004-03-07remove test that always fails from makefileMarco S Hyman
2004-02-28kill bad functions; some sort of ok from marc who is trying to confuse meTheo de Raadt
2004-02-27NO SPRINTF!Theo de Raadt
2004-01-15regression for pthread version of closefromMarco S Hyman
2004-01-08Update regression test to match current library semantics. A selectMarco S Hyman
is supposed to fail with EBADF if another thread closes the fd/socket that is being selected.
2003-12-23Use getopt(3) correctly.Miod Vallat
2003-11-27openbsd tagMarco S Hyman
2003-11-27Reduce iterations so test runs faster.Marco S Hyman
2003-09-18from marc:Henning Brauer
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.
2003-09-02add missing includesDavid Krause
ok deraadt@ tedu@ dhartmei@ krw@
2003-07-31various cleanups; david says results are sameTheo de Raadt
2003-07-14improve test. fails with current codeMarco S Hyman
2003-07-10Add sigmask testMarco S Hyman
2003-07-10Add test to ensure that a masked signal with a default action ofMarco S Hyman
terminate process doesn't terminate the process. It will until a libpthread fix is verify and commited.
2003-07-08Give some feedback during the pthread_cond_timedwait testMarco S Hyman
2003-06-19free memory allocated by asprintf; ok marcoPeter Valchev
2003-06-16no nomanMichael Shalayeff
2003-02-05clean up the testall targetMarco S Hyman
2003-02-05add stdfiles test for proper fd handlingMarco S Hyman
2003-02-04Add test to compare threaded vs non-threaded fd handling.Marco S Hyman
Test not enabled (yet).
2003-01-30add "testall" target for development testingMarco S Hyman
2003-01-27Another incorrect regression test. POSIX specifies that signalMarco S Hyman
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.
2003-01-26remove bogus commentMarco S Hyman
2003-01-23print out the bad values when the test failsMarco S Hyman
2003-01-19add test to ensure select can be cancelled.Marco S Hyman
2003-01-18set stack size for threads, the default is too small for this test.Marco S Hyman
2003-01-14Bye-bye libc_r. libc_r and libnpthread go away. libpthreadMarco S Hyman
takes their place. The -pthread option to gcc uses libpthread. ppc portion of patch from drahn@ (thanks). gcc portions of patch OK espie@. Ports testing (no bad effects!) by naddy@ best build sequence is: build gcc, build system, build ports remove /usr/lib/lib{c_r,npthread}.*. Note, once libc_r and libnpthread is removed threaded ports will stop working until they have been re-built using the libpthread and the updated gcc. That's why the above build sequence is recommended.
2002-12-13don't fail if stdout is not a tty.Marco S Hyman
Print a test ignored message, instead.
2002-12-08comment out bogus portion of test until I figureMarco S Hyman
a better way to test the condition it is trying to test. Solves malloc.conf -> J problem.
2002-11-16use -lnpthread when USELIBPTHREAD=yesMarco S Hyman
2002-11-12dueling mallocs -- test for proper serialization when multiple threadsMarco S Hyman
try to malloc at the same time
2002-10-27remove MD bits from test.Marco S Hyman
This test fails on sparc64 due to that arch not reporting the address correctly -- not a pthreads issue
2002-10-23remove 0x in front of %p -- not neededMarco S Hyman
2002-10-21regression tests should test for proper operation, not what the codeMarco S Hyman
being tested does. A signal should only be delivered to one thread.
2002-10-21Clean up the siginfo test. pthreads siginfo delivery code stillMarco S Hyman
being tested.
2002-10-21Add new testsMarco S Hyman
2002-10-21Add test for non-deferred signal handling in threads. pthreads codeMarco S Hyman
that makes this test work is being tested.
2002-10-21Add test for pthread_kill. The test currently fails as threadMarco S Hyman
specific delivery semantics are incorrect. Fix in progress.
2002-10-12Enable test for proper inheritance of NONBLOCK flag on accept.Marco S Hyman
The test will fail -- a reminder that I still need to fix this.
2002-10-12reduce the amount of output on this test so you can see when thingsMarco S Hyman
go wrong. Remove dead code.
2002-10-12oops, add the testMarco S Hyman
2002-10-12signal deliver to blocked thread testMarco S Hyman
2002-10-12Do not depend upon bugs in the pthreads implementation for properMarco S Hyman
operation of the regression test. This test will now fail until I commit the 'send signals to only one thread bug' change.
2002-10-10add socket test to check blocking/non-blocking mode on accept.Marco S Hyman
Enable test in makefile
2002-10-09comment where code is usedMarco S Hyman
2002-10-09clean-up. check that SA_RESETHAND does the right thing, too.Marco S Hyman
full library support for this is still pending.
2002-10-07more meaningful errorMarco S Hyman