FreeBSD 9.2 and eu 4.1
- Posted by mattlewis (admin) Dec 19, 2013
- 1884 views
I created a couple of FreeBSD 9.2 virtual machines (a 32 and a 64 bit). I found a couple of issues.
- The output of uname uses amd64 instead of x86-64. That was a simple fix.
- FreeBSD does not have a powl function. So I implemented it by casting the long doubles to regular doubles and back. This seems to be causing a failure for sum_central_moments (although it looks like it may be a floating point conversion error).
There are some failing tests:
64 bit failures said...
t_de_dep.e t_de_memory.e t_de_safe.e t_de_unsafe.e t_dep.e t_filesys.e t_io.e t_machine.e t_http.e t_safe.e t_socket.e t_stats.e t_unsafe.e t_c_ns_builtin.e t_c_safe_free_allocate_protect.e t_c_safe_unregister_free.e
The 32-bit failures were nearly identical, except that t_stats and t_c_ns_builtin passed. I haven't looked at any of the failures in detail.
Matt