Skip to content

Commit

Permalink
Fix source_loc test
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime committed Nov 29, 2024
1 parent 968dcfb commit 3fc1482
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tests/test_source_location.cpp
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
#define SPDLOG_SOURCE_LOCATION
#ifndef SPDLOG_NO_SOURCE_LOC

#include "includes.h"
#include "spdlog/sinks/ostream_sink.h"
#include "test_sink.h"

#if defined(SPDLOG_HAVE_STD_SOURCE_LOCATION) || defined(SPDLOG_HAVE_EXPERIMENTAL_SOURCE_LOCATION)

using spdlog::details::os::default_eol;

TEST_CASE("test_source_location", "[source_location]") {
std::ostringstream oss;
auto oss_sink = std::make_shared<spdlog::sinks::ostream_sink_st>(oss);
spdlog::logger oss_logger("oss", oss_sink);
oss_logger.set_pattern("%s:%# %v");
auto oss_logger = std::make_shared<spdlog::logger>("oss", oss_sink);
//spdlog::logger oss_logger("oss", oss_sink);
oss_logger->set_pattern("%s:%# %v");

oss_logger.info("Hello {}", "source location");
REQUIRE(oss.str() == std::string("test_source_location.cpp:16 Hello source location") + default_eol);
SPDLOG_LOGGER_CALL(oss_logger, spdlog::level::info, "Hello {}", "source location");
REQUIRE(oss.str() == std::string("test_source_location.cpp:17 Hello source location") + default_eol);
}

#endif

0 comments on commit 3fc1482

Please sign in to comment.