| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-03 | Remove the print of the rounding mode. | dsl | |
| It was added in case it was non-zero - which it isn't. It still isn't clear why acos(-1) gives the wrong result on some amd64 systems. | |||
| 2014-03-03 | Define HAVE_FENV_H on architectures that support it. | martin | |
| What a mess, we need a central place for this! | |||
| 2014-03-03 | Remove all cargo-cult #ifndef __vax__ from the tests, that just paper | martin | |
| over bugs in the vax libm. | |||
| 2014-03-03 | Fix build for platforms w/o fenv.h. | martin | |
| Remove some bogus #ifdef __vax__ (and add a few, hopefully non-bogus, new ones). | |||
| 2014-03-02 | Include the subtest number in any error output. | dsl | |
| Also temporarily print the rounding mode. I think that acos(-1) is ending up with the wrong sign because the test is being run with 'round towards -ve infinity' set. I think it getting set somewhere and causing this test to fail. The acos() code probably needs fixing - it shouldn't depend on the round mode like this. But first I want to know if this if the error. | |||
| 2014-03-01 | Fix sign. | joerg | |
| 2014-03-01 | Some of the acos() tests seem to fail on some systems. | dsl | |
| Sorting out why isn't helped by the tests not reporting the erronous value. Change the 'boilerplate' pattern used so that all the values are output. Reduce the amount of faffy red tape as well. Some of these reductions could be shared with other libm tests, but for the moment they are defined in this file. All these tests pass on my amd64 system, and when I run amd64 qemu. | |||
| 2014-02-27 | Avoid promotion in subexpressions. | joerg | |
| 2014-02-27 | Don't use integer downcasts, use correctly sized constants for each test. | joerg | |
| 2014-02-27 | Use an abs wide enough to cover the types involved. | joerg | |
| 2014-02-26 | Remove hardcoded VM_MIN_ADDRESS and instead query current value via | martin | |
| sysctl vm.minaddress. | |||
| 2014-02-21 | Remove excemption for i386 (PR lib/48601) - missing aliases will be | martin | |
| added to the C code. | |||
| 2014-02-18 | For now excempt i386 from __sync_lock_test_and_set_8 and point to | martin | |
| PR lib/48601. Probably more architectures to follow. | |||
| 2014-02-17 | Since clang doesn't recognize the nand variants of the sync builtins and | joerg | |
| gcc doesn't support __has_builtin, use a plain #ifndef __clang__ check as workaround. | |||
| 2014-02-17 | Add a link-time test for __sync_* primitives (see PR 48368) - this | martin | |
| will allow us to notice missing functions during the build, instead of when compiling arbitrary pkgsrc stuff later. | |||
| 2014-02-09 | Use compiler builtins instead of atf_arch and atf_machine. | jmmv | |
| The atf_arch and atf_machine configuration variables were removed from atf-0.19 without me realizing that some tests were querying them directly. Instead of reintroducing those variables, just rely on compiler builtins as many other tests already do. Should fix PR bin/48582. | |||
| 2014-02-02 | Add a few more test values from the range that sparc64 previously would | martin | |
| have got wrong. | |||
| 2014-02-01 | Skip testcase inside its body for architectures w/o long double support | martin | |
| 2014-02-01 | Print a slightly more helpfull message in case of test failure | martin | |
| 2014-01-30 | No unused functions if there is no long double support. | joerg | |
| 2014-01-30 | Add test for uint64 to real long double conversion. | joerg | |
| 2014-01-26 | Support using fenv instead of fpsetmask if HAVE_FENV is defined. | matt | |
| 2014-01-26 | Make this real even though it isn't yet used. | matt | |
| 2014-01-25 | Use English spelling of alignment. | skrll | |
| 2014-01-21 | fix comment typos pointed out by uebayasi | yamt | |
| 2014-01-20 | - fix funopen usage | yamt | |
| - some more checks - remove a bogus test case (bad_eucJP_getwc) PR/47660 (Julio Merino) - add XXX comments | |||
| 2014-01-19 | Remove -O0 from CPPFLAGS, and instead set | apb | |
| COPTS.testlang_parse.c += -Wno-uninitialized. Without the old -O0, and without the new -Wno-uninitialized, gcc issues this bogus error: testlang_parse.y:1400:8: error: 'cmd' may be used uninitialized in this function | |||
| 2014-01-19 | Remove "-g" from CPPFLAGS and LDFLAGS in curses tests. | apb | |
| The debug information contains embedded references to the src directory, which is bad for reproducible builds. | |||
| 2014-01-13 | When using braces around shell variable names, do so consistently | gson | |
| 2014-01-13 | Add missing resolv.conf override to the gethostbyaddr6 test case. | gson | |
| 2014-01-11 | New gcc can reuse stack frames for tail calls, so "main" is an optional | martin | |
| frame as well. | |||
| 2014-01-11 | Make the output of the test case better suited for debugging (output full | martin | |
| backtrace before failing any unclear asserts) | |||
| 2014-01-10 | Remove comment that no longer applies. | gson | |
| 2014-01-10 | In the strcat test, smash the stack more severely (this all may depend | martin | |
| on alignment and stack frame details). The gcc folks disagree with this test in general: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59750 | |||
| 2014-01-10 | Add a cleanup routine because if a test fails, the script exits and the | christos | |
| rest of the code is not executed. Note that the cleanup routine is executed in a separate shell so environment variables are not propagated and need to be set again. | |||
| 2014-01-09 | fix copyright botch and add library for netinet6; still does not fix the | christos | |
| problem. | |||
| 2014-01-09 | Use our own resolv.conf file simplifying the test to not need rump_vfs. | christos | |
| Add debugging on the dns server One test fails (gethostbyaddr6) why? It runs without rump | |||
| 2014-01-06 | Fix spelling of "daemon". Pointed out by Thomas Klausner. | gson | |
| 2014-01-06 | Make t_hostent test cases that query the DNS work on systems with no | gson | |
| Internet connectivity, by hijacking DNS queries and /etc/resolv.conf accesses using librumphijack and providing a minimal DNS server to answer the queries. | |||
| 2014-01-03 | netstat expected output includes ipv6 sucket, so add netinet6 | pooka | |
| 2013-12-20 | sixthavenue got upgraded | christos | |
| 2013-12-12 | Add stack alignement test for sparc | martin | |
| 2013-12-11 | Add stack alignment checks for alpha, arm, mips, powerpc, and vax. | matt | |
| Fix makefile to support MACHINE_CPU | |||
| 2013-11-22 | Adjust expected epsilon for sqrtl <-> powl comparisions for defects in | martin | |
| powl (which actually is pow for now) | |||
| 2013-11-21 | Add carriage return to list of valid character substitutions. | blymn | |
| 2013-11-21 | Add carriage return to the quoted character list | blymn | |
| 2013-11-19 | Add cbrtl(3) and sqrtl(3), from FreeBSD. | joerg | |
| 2013-11-15 | Add stack alignement checking for sparc64 | martin | |
| 2013-11-15 | Check stack alignment on hppa. | skrll | |
| 2013-11-15 | - Add bpf_args_t and convert bpf_filter_ext() to use it. This allows the | rmind | |
| caller to initialise (and re-use) the memory store. - Add bpf_jit_generate() and bpf_jit_freecode() wrappers. | |||
