Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Provide an optimized implementation of ffs(3) in libc on | naddy | 2020-06-26 | 1 | -2/+2 |
| | | | | | | aarch64/powerpc/powerpc64, making use of the count leading zeros instruction. Also add a brief regression test. ok deraadt@ kettenis@ | ||||
* | Add a test program for getopt(3) that is adequate for manual testing | schwarze | 2020-03-23 | 1 | -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. | bluhm | 2020-01-13 | 1 | -4/+8 |
| | |||||
* | Link system call tests to build. | bluhm | 2019-11-19 | 1 | -1/+2 |
| | |||||
* | Add regress test for bugs in stdio/fread.c rev 1.13 and 1.17 | millert | 2018-12-16 | 1 | -2/+2 |
| | |||||
* | Add a regression test for ldexp(3). | visa | 2017-10-15 | 1 | -2/+2 |
| | |||||
* | Sort subdir, run getaddrinfo test, remove vax case. | bluhm | 2017-07-27 | 1 | -13/+21 |
| | |||||
* | Add qsort(3) regress based on Bentley & McIlroy's "Engineering a Sort Function" | millert | 2017-05-17 | 1 | -2/+2 |
| | |||||
* | We don't have sigreturn anymore | beck | 2016-05-29 | 1 | -2/+2 |
| | |||||
* | Add ifnameindex to te libc regress tests | claudio | 2015-10-23 | 1 | -3/+3 |
| | |||||
* | Add simple strlcpy regress | millert | 2014-12-02 | 1 | -3/+3 |
| | |||||
* | Add simple strlcat regress | millert | 2014-12-02 | 1 | -2/+2 |
| | |||||
* | Add strnlen to SUBDIRS so we actually run its tests. | millert | 2014-12-02 | 1 | -2/+2 |
| | |||||
* | Enter the REGRESS_FULL target subdirs for clean, cleandir and obj targets. | miod | 2014-07-03 | 1 | -2/+2 |
| | |||||
* | Add regress tests to make sure arc4random(3) is reinitialized | matthew | 2014-06-18 | 1 | -2/+3 |
| | | | | correctly in fork children. | ||||
* | Add regress tests for timingsafe_bcmp and timingsafe_memcmp. | matthew | 2014-06-13 | 1 | -2/+2 |
| | | | | | timingsafe_memcmp tests are disabled for now, pending its addition to libc. | ||||
* | Add regress test for explicit_bzero. | matthew | 2014-06-12 | 1 | -2/+2 |
| | |||||
* | Add basic regression test for modf() issue. | tobiasu | 2014-06-07 | 1 | -2/+2 |
| | | | | encouraged by deraadt and miod | ||||
* | Add a regression test to verify that the FPU control word state is | martynas | 2013-12-29 | 1 | -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_FULL | kettenis | 2013-08-01 | 1 | -2/+6 |
| | | | | variable is set. | ||||
* | Hook up fmemopen and open_memstream tests. | mpi | 2013-05-02 | 1 | -3/+4 |
| | |||||
* | Add a regress test for strtol, which currently fails. | jsing | 2012-11-18 | 1 | -2/+3 |
| | | | | ok otto@ | ||||
* | catch off-by-one errors in stpncpy(); ok guenther@ | naddy | 2012-07-11 | 1 | -6/+6 |
| | |||||
* | Add cephes. | martynas | 2011-07-02 | 1 | -2/+2 |
| | |||||
* | Add setenv/putenv regress | millert | 2010-08-23 | 1 | -2/+2 |
| | |||||
* | Add a regression suite for mkstemp(), verifying that it neither overruns | guenther | 2010-02-11 | 1 | -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 functions | guenther | 2009-11-21 | 1 | -2/+2 |
| | | | | affect stream orientation | ||||
* | Add regression tests for stdio threading. Originally by blambert with | guenther | 2009-11-19 | 1 | -1/+2 |
| | | | | some further hacking by me | ||||
* | Hook up fnmatch and glob regress. | millert | 2008-10-02 | 1 | -5/+5 |
| | |||||
* | - replace dtoa w/ David's gdtoa, version 2008-03-15 | martynas | 2008-09-07 | 1 | -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. | millert | 2007-09-03 | 1 | -2/+2 |
| | | | | __cxa_atexit() regress from kurt@ | ||||
* | Add basename(3) and dirname(3) regression tests, from tbert. | ray | 2007-05-17 | 1 | -3/+3 |
| | | | | OK otto@. | ||||
* | add strtod() underflow test | otto | 2006-09-29 | 1 | -2/+2 |
| | |||||
* | hook telldir | otto | 2006-03-25 | 1 | -2/+2 |
| | |||||
* | Hook up getcap test. | ray | 2006-03-10 | 1 | -2/+2 |
| | |||||
* | Basic regress test for the vis(3) family of functions. Extra tests | otto | 2005-08-29 | 1 | -2/+2 |
| | | | | | for various flag values will be added later. ok deraadt@ | ||||
* | untested Makefile commited | deraadt | 2005-08-12 | 1 | -2/+2 |
| | |||||
* | regression test to check that isw* functions yield the same result as | espie | 2005-08-11 | 1 | -2/+3 |
| | | | | is* functions, and that basic mb->wchar conversion yields sensible results. | ||||
* | basic regression test for some netdb functions | otto | 2004-10-25 | 1 | -2/+2 |
| | |||||
* | Enable strtonum test | otto | 2004-08-03 | 1 | -2/+2 |
| | |||||
* | add getopt_long regress; ok millert@ | david | 2004-07-10 | 1 | -2/+2 |
| | |||||
* | hsearch regress from NetBSD via ray at cyth dot net | millert | 2004-06-24 | 1 | -2/+2 |
| | |||||
* | Add tests for strerror. | espie | 2004-04-30 | 1 | -2/+2 |
| | |||||
* | include some missing ones | deraadt | 2004-02-11 | 1 | -4/+5 |
| | |||||
* | Add strptime regress from NetBSD; OK miod@ after un-peeing. | millert | 2004-01-20 | 1 | -2/+2 |
| | |||||
* | first sprintf test: positional args | deraadt | 2003-05-15 | 1 | -2/+2 |
| | |||||
* | simple alloca test. done twice per deraadt@ suggest | mickey | 2003-02-12 | 1 | -1/+2 |
| | |||||
* | re-enable function pointer table protection, this time make sure that | dhartmei | 2002-08-30 | 1 | -2/+2 |
| | | | | | malloc.c gets the first mmap() call (since it depends on that, for its sbrk(0) use). ok deraadt@ | ||||
* | regress for getaddrinfo/getnameinfo | itojun | 2002-07-05 | 1 | -2/+2 |
| | |||||
* | no more need to explicitly specify regress: _SUBDIRUSE targets anymore. | art | 2002-02-23 | 1 | -3/+1 |
| | | | | XXX - what about the install targets? |