Home
last modified time | relevance | path

Searched refs:ASSERT_DOUBLE_LT (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssh/regress/unittests/misc/
H A Dtest_convtime.c78 ASSERT_DOUBLE_LT(convtime_double(""), 0.0); in test_convtime()
79 ASSERT_DOUBLE_LT(convtime_double("trout"), 0.0); in test_convtime()
80 ASSERT_DOUBLE_LT(convtime_double("1.s"), 0.0); in test_convtime()
81 ASSERT_DOUBLE_LT(convtime_double("0x1"), 0.0); in test_convtime()
82 ASSERT_DOUBLE_LT(convtime_double("inf"), 0.0); in test_convtime()
83 ASSERT_DOUBLE_LT(convtime_double("nan"), 0.0); in test_convtime()
84 ASSERT_DOUBLE_LT(convtime_double("1e10"), 0.0); in test_convtime()
85 ASSERT_DOUBLE_LT(convtime_double("-1"), 0.0); in test_convtime()
86 ASSERT_DOUBLE_LT(convtime_double("3.w0.5s"), 0.0); in test_convtime()
87 ASSERT_DOUBLE_LT(convtime_double("1.0d0.5s"), 0.0); in test_convtime()
[all …]
/freebsd/crypto/openssh/regress/unittests/test_helper/
H A Dtest_helper.h295 #define ASSERT_DOUBLE_LT(a1, a2) \ macro