mirror of
https://github.com/monero-project/monero.git
synced 2025-12-12 15:50:28 -08:00
EasyLogging++: Add UTests, that protect against regressions
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user