summaryrefslogtreecommitdiff
path: root/regress/lib
AgeCommit message (Collapse)Author
2004-01-21fix MakefileDavid Krause
ok millert@
2004-01-20Add strptime regress from NetBSD; OK miod@ after un-peeing.Todd C. Miller
2004-01-16Test more ways of producing a positive infinity, and then test negativeMiod Vallat
infinity as well to prevent entropy leak; the usual suspects still fail all tests.
2004-01-15regression for pthread version of closefromMarco S Hyman
2004-01-15Add a new regression test, which checks that we handle fp overflow correctly,Miod Vallat
and produce a correct infinity. Currently, this tests fails on 68060 (060sp is to blame) and 88100 processors, and maybe more.
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.
2004-01-05regress test for kqueue+EOF; marius aamodt eriksenMarkus Friedl
2003-12-28Add a few test cases.Otto Moerbeek
ok ian@
2003-12-25Test a large negative malloc value as well.Miod Vallat
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-11-01some floor() testMichael Shalayeff
2003-09-23add support for poll(2); ok deraadtMarkus Friedl
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-08-15remove extra \n in {warn,err}{,x} callsTheo de Raadt
2003-08-02add missing includesDavid Krause
ok deraadt@ tedu@
2003-07-31add missing CLEANFILES; ok deraadt@David Krause
2003-07-31various cleanups; david says results are sameTheo de Raadt
2003-07-31enter libutilTheo de Raadt
2003-07-31fix the licenseMichael Shalayeff
2003-07-15move malloc0test.c to new subdir.Otto Moerbeek
ok tdeval@ millert@
2003-07-15Test if malloc() sets errno correctly if it returns NULL.Otto Moerbeek
ok tdeval@ henning@
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-26fix rcsidDavid Krause
2003-06-19the test depend on ${PROG}; noticed by david@, mickey@Markus Friedl
2003-06-19free memory allocated by asprintf; ok marcoPeter Valchev
2003-06-17Sync with share/misc/license.template and add missing DARPA creditTodd C. Miller
where applicable.
2003-06-16use bsd.regress.mkMarkus Friedl
2003-06-16no nomanMichael Shalayeff
2003-06-16missing blowfish testMichael Shalayeff
2003-06-15libskey regress from netbsdMichael Shalayeff
2003-06-15libevent regress from nielsMichael Shalayeff
2003-06-03Use an ISC-tyle license for all my code; it is simpler and more permissive.Todd C. Miller
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-05-24un-break test; report and test by davidkrauseMarkus Friedl
2003-05-15first sprintf test: positional argsTheo de Raadt
2003-05-15Regression for fmt_scaled() and scan_scaled().Ian Darwin
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.