| 43 | extern "C" { |
| 44 | static int IsNanForSystemsWithoutNan(double d) { return ((long)not_a_number == (long)d); } |
| 45 | static int IsInfForSystemsWithoutInf(double d) { return ((long)infinity == (long)d); } |
| 46 | } |
| 47 | |
| 48 | TEST_GROUP(TestFailureNanAndInf) |
nothing calls this directly
no outgoing calls
no test coverage detected