summaryrefslogtreecommitdiff
path: root/regress/lib/libc
AgeCommit message (Collapse)Author
2017-03-14copy /etc/services in test directoryEric Faurot
2017-03-10refresh the test infrastructure a bit.Eric Faurot
2017-03-09remove bogus variable expansionEric Faurot
2017-03-09missing includeEric Faurot
2012-07-13import regression suite for asrEric Faurot
2017-02-25Add missing includes to avoid implicit function declarations.Jonathan Gray
2017-01-24fix make clean and warningsOtto Moerbeek
2017-01-24make sure realloc preserves dataOtto Moerbeek
2017-01-24use ${.OBJDIR}Otto Moerbeek
2017-01-23hook malloc_general to the testsOtto Moerbeek
2017-01-23test malloc/realloc/free with some flag combo'sOtto Moerbeek
2016-09-05Enable mbrtowc(3) and wcrtomb(3) tests now that mbsinit(3) works.Ingo Schwarze
Related to locale/multibyte_citrus.c rev. 1.7.
2016-09-04test wcrtomb(3)Ingo Schwarze
2016-09-03test mbrtowc(3) in conjunction with mbsinit(3)Ingo Schwarze
2016-08-27Pull in <stdio.h> for NULLPhilip Guenther
ok deraadt@
2016-07-13Fix usage() output and getopt sortingPhilip Guenther
2016-05-29Nuke sigret.cBob Beck
ok deraadt@ kettenis@
2016-05-29We don't have sigreturn anymoreBob Beck
2016-05-26tests for the two segfaults in backref() that were just fixedIngo Schwarze
2016-05-26Fix an oversight that caused the test program to segfault:Ingo Schwarze
Don't try to calculate strlen(NULL).
2016-05-26systematically test all combinations of REG_STARTEND, REG_NEWLINE,Ingo Schwarze
and REG_NOTBOL with line and word anchors
2016-05-26support for testing REG_STARTEND together with REG_NOTBOLIngo Schwarze
2016-02-26Add a test for negated POSIX characer classes.Todd C. Miller
2015-11-08Make sure we use a sigjmp_buf in the sigsetjmp() part of the test.Miod Vallat
2015-10-30Pull in <sys/types.h> to get ssize_t or <stdint.h> to get uint32_t, instead ofMiod Vallat
relying upon previously included headers to do this, to enhance portability; from Pascal Cuoq, libressl github pull request #52
2015-10-25Hide __atexit and __atexit_register_cleanup()Philip Guenther
Wrap __cxa_{atexit,finalize}() so the call from exit() goes direct Switch regress/lib/libc/atexit/ to be built with -static so that it can still access __atexit* ok millert@ jca@
2015-10-25Use dprintf() instead of fprintf() in the signal handlerPhilip Guenther
2015-10-23Cast ctype functions' arguments to unsigned char.mmcc
2015-10-23Add ifnameindex to te libc regress testsClaudio Jeker
2015-10-22Add a regress test for if_indextoname() and if_nametoindex()Claudio Jeker
2015-10-22Add a regress for libc handling of SIGTHRPhilip Guenther
2015-10-18Need <string.h> for memset()Philip Guenther
2015-09-14Test the exported strsignal() API, not the (now hidden) internal APIPhilip Guenther
noted by daniel@
2015-08-23ISO8859-1 support has been removedPhilip Guenther
ok semarie@
2015-07-20Add VIS_DQ to escape double quotes. OK deraadt@ semarie@ reyk@Todd C. Miller
2015-07-07add setlocale testsemarie
2015-07-07add regress test for setlocale(3) and some relatedsemarie
functions (MB_CUR_MAX, isalpha() for ctype. some tips from stsp@
2015-05-29Need to operate of CXXFLAGS now.Miod Vallat
2015-03-15fix for regression test for strtol(). it failed (the wrong kind ofPeter Hessler
fail), on 64-bit systems. tested on 64-bit (amd64) and 32-bit (sparc). OK claudio@ deraadt@
2015-02-06SIZE_MAX is standard, we should be using it in preference to theTodd C. Miller
obsolete SIZE_T_MAX. OK miod@ beck@
2015-01-20Missing $OpenBSD$'s.Kenneth R Westerback
ok deraadt@
2014-12-10fix previous.Daniel Dickman
2014-12-09t_exhaust is too exhaustingTheo de Raadt
2014-12-03Fill the buffer with 'z' instead of 'a' since 'a' is part of theTodd C. Miller
string we are testing. Add tests to verify that we get SIGSEGV when passed a NULL src or dst. It is better to crash than for an implementation to check for NULL and try to recover.
2014-12-02Add simple strlcpy regressTodd C. Miller
2014-12-02Add simple strlcat regressTodd C. Miller
2014-12-02Add strnlen to SUBDIRS so we actually run its tests.Todd C. Miller
2014-09-27Fix mmap() calls that check for a result other than MAP_FAILED.Doug Hogan
ok tedu@
2014-09-21Add support for word anchors \< and \> to regex regression tests.Doug Hogan
These are copied from the existing [[:<:]] and [[:>:]] tests.
2014-09-19Fix on 32bit platforms where 0xdeadbeef > LONG_MAX.Ingo Schwarze
To avoid making tests machine dependent, only test values inside 32bit LONG_{MIN,MAX} and outside 64bit LONG_{MIN,MAX}, but none in between. While here, cover 32bit edge cases, negative values, and overflows. ok jsing@