summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add a test program for getopt(3) that is adequate for manual testingschwarze2020-03-231-2/+2
| | | | | | | | and a compact test suite for getopt(3) intended automated regression testing, both written from scratch. The suite is intended to provide full coverage, except that it doesn't test manual changes of optind and optreset and except that it so far avoids the situation where we have a known bug.
* Link forgotten libc tests to the build.bluhm2020-01-131-4/+8
|
* Link system call tests to build.bluhm2019-11-191-1/+2
|
* Add regress test for bugs in stdio/fread.c rev 1.13 and 1.17millert2018-12-161-2/+2
|
* Add a regression test for ldexp(3).visa2017-10-151-2/+2
|
* Sort subdir, run getaddrinfo test, remove vax case.bluhm2017-07-271-13/+21
|
* Add qsort(3) regress based on Bentley & McIlroy's "Engineering a Sort Function"millert2017-05-171-2/+2
|
* We don't have sigreturn anymorebeck2016-05-291-2/+2
|
* Add ifnameindex to te libc regress testsclaudio2015-10-231-3/+3
|
* Add simple strlcpy regressmillert2014-12-021-3/+3
|
* Add simple strlcat regressmillert2014-12-021-2/+2
|
* Add strnlen to SUBDIRS so we actually run its tests.millert2014-12-021-2/+2
|
* Enter the REGRESS_FULL target subdirs for clean, cleandir and obj targets.miod2014-07-031-2/+2
|
* Add regress tests to make sure arc4random(3) is reinitializedmatthew2014-06-181-2/+3
| | | | correctly in fork children.
* Add regress tests for timingsafe_bcmp and timingsafe_memcmp.matthew2014-06-131-2/+2
| | | | | timingsafe_memcmp tests are disabled for now, pending its addition to libc.
* Add regress test for explicit_bzero.matthew2014-06-121-2/+2
|
* Add basic regression test for modf() issue.tobiasu2014-06-071-2/+2
| | | | encouraged by deraadt and miod
* Add a regression test to verify that the FPU control word state ismartynas2013-12-291-1/+2
| | | | | preserved by setjmp. Currently under REGRESS_FULL as this fails on certain archs.
* Some tests are currently failing. Only run those if the REGRESS_FULLkettenis2013-08-011-2/+6
| | | | variable is set.
* Hook up fmemopen and open_memstream tests.mpi2013-05-021-3/+4
|
* Add a regress test for strtol, which currently fails.jsing2012-11-181-2/+3
| | | | ok otto@
* catch off-by-one errors in stpncpy(); ok guenther@naddy2012-07-111-6/+6
|
* Add cephes.martynas2011-07-021-2/+2
|
* Add setenv/putenv regressmillert2010-08-231-2/+2
|
* Add a regression suite for mkstemp(), verifying that it neither overrunsguenther2010-02-111-2/+2
| | | | | | no underruns the supplied template buffer, that it can generate names that don't contain any X's, and that all open() calls that pass O_CREAT also pass O_EXCL
* Add a (hopefully) comprehensive regression test of how stdio functionsguenther2009-11-211-2/+2
| | | | affect stream orientation
* Add regression tests for stdio threading. Originally by blambert withguenther2009-11-191-1/+2
| | | | some further hacking by me
* Hook up fnmatch and glob regress.millert2008-10-021-5/+5
|
* - replace dtoa w/ David's gdtoa, version 2008-03-15martynas2008-09-071-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - provide proper dtoa locks - use the real strtof implementation - add strtold, __hdtoa, __hldtoa - add %a/%A support - don't lose precision in printf, don't round to double anymore - implement extended-precision versions of libc functions: fpclassify, isnan, isinf, signbit, isnormal, isfinite, now that the ieee.h is fixed - separate vax versions of strtof, and __hdtoa - add complex math support. added functions: cacos, casin, catan, ccos, csin, ctan, cacosh, casinh, catanh, ccosh, csinh, ctanh, cexp, clog, cabs, cpow, csqrt, carg, cimag, conj, cproj, creal, cacosf, casinf, catanf, ccosf, csinf, ctanf, cacoshf, casinhf, catanhf, ccoshf, csinhf, ctanhf, cexpf, clogf, cabsf, cpowf, csqrtf, cargf, cimagf, conjf, cprojf, crealf - add fdim, fmax, fmin - add log2. (adapted implementation e_log.c. could be more acruate & faster, but it's good enough for now) - remove wrappers & cruft in libm, supposed to work-around mistakes in SVID, etc.; use ieee versions. fixes issues in python 2.6 for djm@ - make _digittoint static - proper definitions for i386, and amd64 in ieee.h - sh, powerpc don't really have extended-precision - add missing definitions for mips64 (quad), m{6,8}k (96-bit) float.h for LDBL_* - merge lead to frac for m{6,8}k, for gdtoa to work properly - add FRAC*BITS & EXT_TO_ARRAY32 definitions in ieee.h, for hdtoa&ldtoa to use - add EXT_IMPLICIT_NBIT definition, which indicates implicit normalization bit - add regression tests for libc: fpclassify and printf - arith.h & gd_qnan.h definitions - update ieee.h: hppa doesn't have quad-precision, hppa64 does - add missing prototypes to gdtoaimp - on 64-bit platforms make sure gdtoa doesn't use a long when it really wants an int - etc., what i may have forgotten... - bump libm major, due to removed&changed symbols - no libc bump, since this is riding on djm's libc major crank from a day ago discussed with / requested by / testing theo, sthen@, djm@, jsg@, merdely@, jsing@, tedu@, brad@, jakemsr@, and others. looks good to millert@ parts of the diff ok kettenis@ this commit does not include: - man page changes
* Adapt atexit() regress to recent changes and add __cxa_atexit() regress.millert2007-09-031-2/+2
| | | | __cxa_atexit() regress from kurt@
* Add basename(3) and dirname(3) regression tests, from tbert.ray2007-05-171-3/+3
| | | | OK otto@.
* add strtod() underflow testotto2006-09-291-2/+2
|
* hook telldirotto2006-03-251-2/+2
|
* Hook up getcap test.ray2006-03-101-2/+2
|
* Basic regress test for the vis(3) family of functions. Extra testsotto2005-08-291-2/+2
| | | | | for various flag values will be added later. ok deraadt@
* untested Makefile commitedderaadt2005-08-121-2/+2
|
* regression test to check that isw* functions yield the same result asespie2005-08-111-2/+3
| | | | is* functions, and that basic mb->wchar conversion yields sensible results.
* basic regression test for some netdb functionsotto2004-10-251-2/+2
|
* Enable strtonum testotto2004-08-031-2/+2
|
* add getopt_long regress; ok millert@david2004-07-101-2/+2
|
* hsearch regress from NetBSD via ray at cyth dot netmillert2004-06-241-2/+2
|
* Add tests for strerror.espie2004-04-301-2/+2
|
* include some missing onesderaadt2004-02-111-4/+5
|
* Add strptime regress from NetBSD; OK miod@ after un-peeing.millert2004-01-201-2/+2
|
* first sprintf test: positional argsderaadt2003-05-151-2/+2
|
* simple alloca test. done twice per deraadt@ suggestmickey2003-02-121-1/+2
|
* re-enable function pointer table protection, this time make sure thatdhartmei2002-08-301-2/+2
| | | | | malloc.c gets the first mmap() call (since it depends on that, for its sbrk(0) use). ok deraadt@
* regress for getaddrinfo/getnameinfoitojun2002-07-051-2/+2
|
* no more need to explicitly specify regress: _SUBDIRUSE targets anymore.art2002-02-231-3/+1
| | | | XXX - what about the install targets?
* add longjmpart2002-02-181-2/+2
|