From b2c59af84de8d35c1eee38878053206a62756968 Mon Sep 17 00:00:00 2001 From: mj-xmr Date: Tue, 2 Mar 2021 09:36:04 +0100 Subject: EasyLogging++: new anti-UB test and propagating exception --- tests/unit_tests/logging.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests') diff --git a/tests/unit_tests/logging.cpp b/tests/unit_tests/logging.cpp index f11b17412..b3ffb9aa6 100644 --- a/tests/unit_tests/logging.cpp +++ b/tests/unit_tests/logging.cpp @@ -208,3 +208,10 @@ TEST(logging, operator_equals_segfault) el::Logger log2("id2", nullptr); log2 = log1; } + +TEST(logging, empty_configurations_throws) +{ + el::Logger log1("id1", nullptr); + const el::Configurations cfg; + EXPECT_ANY_THROW(log1.configure(cfg)); +} -- cgit v1.2.3