mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
Fix Windows setenv check
This commit is contained in:
parent
208eb0ca07
commit
a10763138e
@ -12,7 +12,7 @@ TEST_CASE("env", "[cfg]")
|
|||||||
{
|
{
|
||||||
spdlog::drop("l1");
|
spdlog::drop("l1");
|
||||||
auto l1 = spdlog::create<test_sink_st>("l1");
|
auto l1 = spdlog::create<test_sink_st>("l1");
|
||||||
#ifdef _MSC_VER
|
#ifdef CATCH_PLATFORM_WINDOWS
|
||||||
_putenv_s("SPDLOG_LEVEL", "l1=warn");
|
_putenv_s("SPDLOG_LEVEL", "l1=warn");
|
||||||
#else
|
#else
|
||||||
setenv("SPDLOG_LEVEL", "l1=warn", 1);
|
setenv("SPDLOG_LEVEL", "l1=warn", 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user