summaryrefslogtreecommitdiff
path: root/tests/test-vasprintf-posix.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Guarantee a definition of NAN.Eric Blake2008-03-311-22/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lib/math.in.h (NAN): Define if missing. * tests/test-math.c (main): Test it. * doc/posix-headers/math.texi (math.h): Document this. * lib/isnan.c (rpl_isnand): Use it. * tests/test-ceilf1.c (NaN): Delete, and use NAN instead. * tests/test-floorf1.c (NaN): Likewise. * tests/test-frexp.c (NaN): Likewise. * tests/test-isnand.c (NaN): Likewise. * tests/test-isnanf.c (NaN): Likewise. * tests/test-round1.c (NaN): Likewise. * tests/test-roundf1.c (NaN): Likewise. * tests/test-snprintf-posix.h (NaN): Likewise. * tests/test-sprintf-posix.h (NaN): Likewise. * tests/test-trunc1.c (NaN): Likewise. * tests/test-truncf1.c (NaN): Likewise. * tests/test-vasnprintf-posix.c (NaN): Likewise. * tests/test-vasprintf-posix.c (NaN): Likewise. * modules/isnand-nolibm (Depends-on): Add math. * modules/isnanf-nolibm (Depends-on): Likewise. * modules/isnanl (Depends-on): Likewise. * modules/isnanl-nolibm (Depends-on): Likewise. * modules/snprintf-posix-tests (Depends-on): Likewise. * modules/sprintf-posix-tests (Depends-on): Likewise. * modules/vsnprintf-posix-tests (Depends-on): Likewise. * modules/vsprintf-posix-tests (Depends-on): Likewise. * modules/vasnprintf-posix-tests (Depends-on): Likewise. * modules/vasprintf-posix-tests (Depends-on): Likewise. Signed-off-by: Eric Blake <ebb9@byu.net>
* Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.Bruno Haible2008-02-071-1/+33
|
* Add tests for large precisions.Bruno Haible2007-11-041-0/+100
|
* Change copyright notice from GPLv2+ to GPLv3+.Bruno Haible2007-10-071-5/+4
|
* Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64, ia64.Bruno Haible2007-06-061-0/+418
|
* Unconditionally include <config.h> in unit tests.Eric Blake2007-05-281-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H. * tests/test-allocsa.c, tests/test-arcfour.c, tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c, tests/test-array_list.c, tests/test-array_oset.c, tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c, test-avltreehash_list.c, test-base64.c, test-binary-io.c, test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c, test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c, test-carray_list.c, test-crc.c, test-des.c, test-dirname.c, test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c, test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c, test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c, test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c, test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c, test-iconv.c, test-linked_list.c, test-linkedhash_list.c, test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c, test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c, test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c, test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c, test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c, test-md5.c, test-memmem.c, test-printf-posix.c, test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c, test-read-file.c, test-rijndael.c, test-snprintf-posix.c, test-snprintf.c, test-sprintf-posix.c, test-stdint.c, test-strcasestr.c, test-striconv.c, test-striconveh.c, test-striconveha.c, test-tls.c, test-vasnprintf-posix.c, test-vasnprintf-posix2.c, test-vasnprintf.c, test-vasprintf-posix.c, test-vasprintf.c, test-verify.c, test-vfprintf-posix.c, test-vprintf-posix.c, test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c, test-xvasprintf.c: Likewise.
* Allow for a longer printed representation of NaN.Bruno Haible2007-05-241-16/+16
|
* Stricter check for printf result for NaN arguments.Bruno Haible2007-05-221-36/+39
|
* Avoid test failures on some versions of HP-UX 11.Bruno Haible2007-05-201-18/+36
|
* Avoid test failures on platforms where -0.0 and 0.0 are identical.Bruno Haible2007-05-191-11/+30
|
* Avoid test failures on IRIX 6.5.Bruno Haible2007-05-191-26/+62
|
* Accomodate for implementations that produce 3 exponent digits in %e and %g.Bruno Haible2007-05-191-21/+55
|
* Add tests for %e and %g directives.Bruno Haible2007-05-181-0/+1144
|
* More tests of printf %f.Bruno Haible2007-05-181-0/+194
|
* Work around an incorrect implementation of the 0 flag on most platforms.Bruno Haible2007-05-061-2/+143
|
* Work around lack of support of grouping flag.Bruno Haible2007-05-061-0/+12
|
* Better ASSERT macro.Bruno Haible2007-04-291-1/+11
|
* Add tests for %f and %F directives.Bruno Haible2007-04-131-0/+458
|
* Guard against FreeBSD 6.1 bug.Bruno Haible2007-04-111-8/+12
|
* Assume 'long double' exists.Bruno Haible2007-04-061-6/+0
|
* FreeBSD 6.1 produces different printf output than glibc.Bruno Haible2007-04-051-4/+8
|
* Move vasprintf prototypes to stdio.Simon Josefsson2007-03-271-1/+1
|
* Work around a DEC C compiler bug.Bruno Haible2007-03-251-2/+14
|
* Test a corner case. Exclude two buggy implementations.Bruno Haible2007-03-051-1/+29
|
* Tests for module 'vasprintf-posix'.Bruno Haible2007-03-051-0/+742