mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-13 17:22:06 +08:00
Fixed ring buffer sink
This commit is contained in:
parent
1bfdff87ab
commit
88970085ba
@ -37,7 +37,7 @@ TEST_CASE("test_drain_raw", "[ringbuffer_sink]") {
|
||||
}
|
||||
|
||||
int counter = 0;
|
||||
sink->drain_raw([&](const spdlog::details::log_msg_buffer &buffer) {
|
||||
sink->drain_raw([&](const spdlog::details::async_log_msg &buffer) {
|
||||
REQUIRE(buffer.payload.data() == std::to_string(counter + 1));
|
||||
counter++;
|
||||
});
|
||||
@ -68,4 +68,4 @@ TEST_CASE("test_empty_size", "[ringbuffer_sink]") {
|
||||
sink->drain([&](std::string_view) {
|
||||
REQUIRE_FALSE(true); // should not be called since the sink size is 0
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user