EasyLogging++: Add UTests, that protect against regressions

pull/470/head
mj-xmr 3 years ago
parent 9c18f2767b
commit 5e6762d459
No known key found for this signature in database
GPG Key ID: C101BF94093451E0

@ -195,3 +195,16 @@ TEST(logging, multiline)
cleanup();
}
// These operations might segfault
TEST(logging, copy_ctor_segfault)
{
const el::Logger log1("id1", nullptr);
const el::Logger log2(log1);
}
TEST(logging, operator_equals_segfault)
{
const el::Logger log1("id1", nullptr);
el::Logger log2("id2", nullptr);
log2 = log1;
}

Loading…
Cancel
Save