Unverified Commit f57378d8 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Update test_eventlog.cpp

parent 1ccdc225
...@@ -43,7 +43,7 @@ static void test_single_print(std::function<void(std::string const &)> do_log, s ...@@ -43,7 +43,7 @@ static void test_single_print(std::function<void(std::string const &)> do_log, s
REQUIRE(record->NumStrings == 1); REQUIRE(record->NumStrings == 1);
REQUIRE(record->EventType == expected_ev_type); REQUIRE(record->EventType == expected_ev_type);
REQUIRE(record->TimeGenerated == expected_time_generated); REQUIRE((expected_time_generated - record->TimeGenerated) <= 3u);
std::string message_in_log(((char *)record + record->StringOffset)); std::string message_in_log(((char *)record + record->StringOffset));
REQUIRE(message_in_log == expected_contents + spdlog::details::os::default_eol); REQUIRE(message_in_log == expected_contents + spdlog::details::os::default_eol);
...@@ -68,4 +68,4 @@ TEST_CASE("eventlog", "[eventlog]") ...@@ -68,4 +68,4 @@ TEST_CASE("eventlog", "[eventlog]")
test_single_print([&test_logger](std::string const &msg) { test_logger.critical(msg); }, "my critical message", EVENTLOG_ERROR_TYPE); test_single_print([&test_logger](std::string const &msg) { test_logger.critical(msg); }, "my critical message", EVENTLOG_ERROR_TYPE);
} }
#endif //_WIN32 #endif //_WIN32
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment