mirror of
https://github.com/gabime/spdlog.git
synced 2026-01-02 01:47:54 +08:00
The unit tests were failing when users defined custom SPDLOG_LEVEL_NAMES or SPDLOG_SHORT_LEVEL_NAMES in tweakme.h. This happened because the tests expected the default level names but were getting the customized ones instead. For example, with custom short names defined, the test would fail like this: REQUIRE( spdlog::level::to_string_view(spdlog::level::trace) == "trace" ) with expansion: "TRC" == "trace" This fix undefines these macros in tests/includes.h (right after setting SPDLOG_ACTIVE_LEVEL) so that unit tests always use spdlog's default level names, regardless of any customizations in tweakme.h. Fixes #3466
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#if defined(__GNUC__) && __GNUC__ == 12
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized" // Workaround for GCC 12
|
|
#endif
|
|
#include <catch2/catch_all.hpp>
|
|
#if defined(__GNUC__) && __GNUC__ == 12
|
|
#pragma GCC diagnostic pop
|
|
#endif
|
|
|
|
#include "utils.h"
|
|
#include <chrono>
|
|
#include <cstdio>
|
|
#include <exception>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <ostream>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <iomanip>
|
|
#include <stdlib.h>
|
|
|
|
#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_DEBUG
|
|
|
|
#undef SPDLOG_LEVEL_NAMES
|
|
#undef SPDLOG_SHORT_LEVEL_NAMES
|
|
|
|
#include "spdlog/spdlog.h"
|
|
#include "spdlog/async.h"
|
|
#include "spdlog/details/fmt_helper.h"
|
|
#include "spdlog/details/os.h"
|
|
|
|
#ifndef SPDLOG_NO_TLS
|
|
#include "spdlog/mdc.h"
|
|
#endif
|
|
|
|
#include "spdlog/sinks/basic_file_sink.h"
|
|
#include "spdlog/sinks/daily_file_sink.h"
|
|
#include "spdlog/sinks/null_sink.h"
|
|
#include "spdlog/sinks/ostream_sink.h"
|
|
#include "spdlog/sinks/rotating_file_sink.h"
|
|
#include "spdlog/sinks/stdout_color_sinks.h"
|
|
#include "spdlog/sinks/msvc_sink.h"
|
|
#include "spdlog/pattern_formatter.h"
|