Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-25 | The execve()-vs-threads test should test not just that the thread library | Philip Guenthe | |
doesn't blow up but also that (1) a failed execve doesn't kill other threads, and (2) a successful execve does make other threads vanish | |||
2011-11-18 | Regress test for per-(r)thread errno address | Philip Guenthe | |
2011-11-06 | return non-zero on error | Otto Moerbeek | |
2011-11-05 | and clean extra target | Otto Moerbeek | |
2011-11-05 | add exhaust test from netbsd | Otto Moerbeek | |
2011-10-16 | uncomment wscanf tests | Stefan Sperling | |
2011-10-10 | allow for this to timeout rather than hanging forever. | Federico G. Schwindt | |
2011-10-09 | Test for the wait*() hang issue when SIGCHLD is ignored, as seen in | Federico G. Schwindt | |
the python's subprocess' test. | |||
2011-10-01 | fix some checks. | Federico G. Schwindt | |
2011-10-01 | enter signals. | Federico G. Schwindt | |
2011-10-01 | Add tests to check signal handling during pthread_join(3) and | Federico G. Schwindt | |
pthread_mutex_lock(3). Currently failing. | |||
2011-09-23 | Add a test for recursive pthread_mutex_trylock() | Uwe Stuehler | |
ok guenther@ | |||
2011-09-18 | add connect and move include to top Makefile.inc | Federico G. Schwindt | |
2011-09-18 | test for interrupted connect. | Federico G. Schwindt | |
2011-09-17 | Expand fnmatch() regress with patterns obtained from the tests for APR's | Stefan Sperling | |
new fnmatch implementation. With kind permission from Bill Rowe. Tweak the test code to allow comment lines in the test data file. ok millert@ | |||
2011-09-13 | first round of tests to check system calls restarting with pthreads. | Federico G. Schwindt | |
guenther@ ok | |||
2011-07-09 | Adapt tests for extended-precision. | Martynas Venckus | |
2011-07-08 | Add 80-bit and 128-bit precision test vectors for the math functions. | Martynas Venckus | |
No problems found by Cephes in 17022 tests. | |||
2011-07-07 | timed's time is up. use ntpd(8). Even our own fossil developers | Theo de Raadt | |
switched a while back. ok miod, kettenis | |||
2011-07-03 | Include tests of 80-bit long double precision (on platforms that | Martynas Venckus | |
support it) now that scanf is implemented properly. | |||
2011-07-02 | Add cephes. | Martynas Venckus | |
2011-07-02 | Import Steve Moshier's printf/scanf tester. | Martynas Venckus | |
2011-06-02 | Add the quadruple-precision constants; testvect works better now | Martynas Venckus | |
on sparc64. | |||
2011-05-30 | Add cephes, and lgamma. | Martynas Venckus | |
2011-05-30 | Import regression test vectors from the Cephes math library. This | Martynas Venckus | |
covers C99 double, extended and quadruple precision functions. Stephen relicensed this under the right license. Testvect contains special values from C9X section F.9. Monot contains test vectors synthesized around NPTS points, which are near the boundaries where the algorithms (likely) change their methods; helping to detect coding/monotonicity errors. Note that a lot of extended and quadruple precision tests are if0'd for now; since our math library is incomplete. Hopefully this will change soon. (-; | |||
2011-05-28 | Add some simple test cases for lgamma, and lgammaf. | Martynas Venckus | |
Currently the functions return correct results for the input of negative zero; however signgam is wrong in this case. | |||
2011-05-01 | Pull in <string.h> for memset() | Philip Guenthe | |
2011-05-01 | Make the regress setup not assume the umask is 022 | Philip Guenthe | |
2011-04-29 | uncomment fwprintf and wprintf tests | Stefan Sperling | |
2011-04-24 | Regression test for floating point format directives in wprintf. | Stefan Sperling | |
ok kettenis espie | |||
2011-04-17 | Add recently added tests to SUBDIR. | Martynas Venckus | |
2011-04-17 | Add tests for {,l,ll}round{,f}. Same tests as for {,l,ll}rint{,f}, | Martynas Venckus | |
except doesn't test rounding modes. Fix pending. Build it with -fno-builtin if you want to test the library functionality--otherwise GCC4 will decide to use its builtins on some platforms. | |||
2011-04-16 | Test nextafter and nextafterf for zero, nan and some basic | Martynas Venckus | |
functionality. Fix pending. | |||
2011-04-12 | add missing tools.h file | Alexandre Ratchov | |
2011-04-10 | tsk, float version of lrint is affected by a different bug, where | Martynas Venckus | |
the corner cases would return zero--add some more tests. assembly versions on amd64 and i386 are fine. | |||
2011-04-10 | add tests for yet-another bug of netbsd implementation of lrint. | Martynas Venckus | |
i've added only couple of values, however the whole exponent range of 52 is broken. luckily amd64 and i386 aren't affected, since they use the assembly versions which do the right thing. | |||
2011-04-10 | add tests for values zero, -zero; and values close to zero with | Martynas Venckus | |
-inf/+inf rounding modes. | |||
2011-03-21 | import fenv regression test suite. this one is from freebsd and | Martynas Venckus | |
has more tests than i initially had. currently the last diff for amd64 posted on tech@ passes all tests. | |||
2011-03-13 | add a regress test for the vis and unvis functions. after finding one | Theo de Raadt | |
bug, this then found a 2nd bug.. worked on with guenther | |||
2011-01-07 | Remove an extraneous return statement with the wrong return value. | Todd C. Miller | |
Fix some gcc warnings. | |||
2010-12-26 | Use sizeof(double) instead of hardcoding 8. | Miod Vallat | |
2010-11-06 | make sio_onvol(3) return a integer exposing whether a volume knob | Alexandre Ratchov | |
is available for the stream. As we're at it, remove macros and functions that are neither used nor documented. | |||
2010-10-03 | don't use non-standard CFLAGS; ok miod@, deraadt@ | Christian Weisgerber | |
2010-09-24 | add a GLOB_KEEPSTAT option that retains a copy of the struct stat | Damien Miller | |
information that is looked up while matching glob(3)s Keeping this information around can make a big difference when fetching it is expensive, e.g. in sftp which uses GLOB_ALTDIRFUNC feedback millert@ jmc@ "get it in before the libc crank" deraadt@ | |||
2010-09-18 | Add cvs tag, author name and year | Todd C. Miller | |
2010-09-18 | Test default precision when ndigit is negative. | Todd C. Miller | |
2010-09-18 | Add more test vectors. | Todd C. Miller | |
2010-09-17 | Add gcvt() regress with test vectors derived from perl regress. | Todd C. Miller | |
Does not currently pass, which is why perl can't use it to format doubles. | |||
2010-08-23 | Add setenv/putenv regress | Todd C. Miller | |
2010-06-29 | Correct the target name | Philip Guenthe | |