Home | History | Annotate | Download | only in test

Lines Matching refs:EDOM

81   throw fmt::SystemError(EDOM, "test");
96 EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, p_++), "01234");
147 }, EDOM, (b_++, "test"));
155 }, EDOM, (b_++, "test")), "throws a different type");
163 }, EDOM, (b_++, "other")),
170 EXPECT_SYSTEM_ERROR(a_++, EDOM, (b_++, "test")), "throws nothing");
210 EXPECT_SYSTEM_ERROR(throw fmt::SystemError(EDOM, "test"), EDOM, "test");
211 EXPECT_NONFATAL_FAILURE(EXPECT_SYSTEM_ERROR(n++, EDOM, ""), "");
212 EXPECT_NONFATAL_FAILURE(EXPECT_SYSTEM_ERROR(throw 1, EDOM, ""), "");
214 throw fmt::SystemError(EDOM, "aaa"), EDOM, "bbb"), "");
229 EXPECT_SYSTEM_ERROR(do_nothing(), EDOM, "");
232 EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, "test");
267 EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, "test");
269 EXPECT_SYSTEM_ERROR(throw_exception(), EDOM, "test"),
273 EXPECT_SYSTEM_ERROR(do_nothing(), EDOM, "test"),
277 EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, "other"),
282 format_system_error(EDOM, "other"),
283 format_system_error(EDOM, "test")));
306 EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, "test")
309 EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, "other")
323 fmt::format_system_error(out, EDOM, "test message");
324 EXPECT_EQ(out.str(), format_system_error(EDOM, "test message"));