mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Don't expect :fmod to fail on FreeBSD
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
f8fd1a95d9
commit
10f26e7d81
1 changed files with 2 additions and 0 deletions
|
|
@ -43,8 +43,10 @@ ATF_TC_HEAD(fmod, tc)
|
|||
|
||||
ATF_TC_BODY(fmod, tc)
|
||||
{
|
||||
#ifdef __NetBSD__
|
||||
if (isQEMU())
|
||||
atf_tc_expect_fail("PR misc/44767");
|
||||
#endif
|
||||
|
||||
ATF_CHECK(fmodf(2.0, 1.0) == 0);
|
||||
ATF_CHECK(fmod(2.0, 1.0) == 0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue