diff options
author | mj-xmr <mjxmr@protonmail.com> | 2021-07-05 17:42:11 +0200 |
---|---|---|
committer | mj-xmr <mjxmr@protonmail.com> | 2021-07-06 06:50:52 +0200 |
commit | 5e6762d4591ed427715b1ad76b0737b6f59cf571 (patch) | |
tree | 7d7e2a40550ce34886f52e56ee82956db2aff68f /tests/unit_tests/logging.cpp | |
parent | Merge pull request #7743 (diff) | |
download | monero-5e6762d4591ed427715b1ad76b0737b6f59cf571.tar.xz |
EasyLogging++: Add UTests, that protect against regressions
Diffstat (limited to '')
-rw-r--r-- | tests/unit_tests/logging.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/unit_tests/logging.cpp b/tests/unit_tests/logging.cpp index b3afba243..f11b17412 100644 --- a/tests/unit_tests/logging.cpp +++ b/tests/unit_tests/logging.cpp @@ -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; +} |