summaryrefslogtreecommitdiff
path: root/regress/lib
AgeCommit message (Collapse)Author
2003-02-12a double to int conversion testMichael Shalayeff
2003-02-12a very simple rint() test. helped figure out fpu emulation probs on hppaMichael Shalayeff
2003-02-12simple alloca test. done twice per deraadt@ suggestMichael 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-19repository move libc_r to libpthreadTheo de Raadt
2003-01-19repository move to libpthreadTheo de Raadt
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.
2003-01-03Nobody even compiles the #@!$&~ regression tests anyway.Miod Vallat
2002-12-13don't fail if stdout is not a tty.Marco S Hyman
Print a test ignored message, instead.
2002-12-08Test option "-" (BSD extension)Todd C. Miller
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-12-07Add test for fix in revision 1.5 of getopt_long.cTodd C. Miller
2002-12-05update test resultsTodd C. Miller
2002-12-05excercise "-W longopt"Todd C. Miller
2002-12-05simple regress for getopt_long() and getopt_long_only()Todd C. Miller
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-21do not use an absolute path in include; dhartmei@ okMichael Shalayeff
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
2002-10-07use/check SA_RESETHAND, too.Marco S Hyman
Note: until SA_RESETHAND support is fixed the test loops on SIGSEGV
2002-10-07add pthread siginfo support testMarco S Hyman
2002-09-26remove MDC2; patentsMarkus Friedl
2002-09-14Move __cleanup into mprotect'ed page to prevent unintentional modificationsDaniel Hartmeier
similar to the atexit handlers. Idea and help deraadt@, ok deraadt@
2002-09-02Rename a bunch of the old bsd.regress.mk variables into the new ones.Anil Madhavapeddy
ok art@
2002-09-02the regress target should be run-regress-atexit_test to avoidAnil Madhavapeddy
aborting a regress run if it fails
2002-09-01e_os.h is longer installedMarkus Friedl
2002-08-30re-enable function pointer table protection, this time make sure thatDaniel Hartmeier
malloc.c gets the first mmap() call (since it depends on that, for its sbrk(0) use). ok deraadt@