aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-07-27 17:01:00 -0400
committerluigi1111 <luigi1111w@gmail.com>2021-07-27 17:01:00 -0400
commit2f6d5fa8c2f15d190ddc051d3cc12cbc86f8c1dd (patch)
treec8043f1fd67740a894a122eb3845c0570bc45047
parentMerge pull request #7769 (diff)
parentEasyLogging++: Add UTests, that protect against regressions (diff)
downloadmonero-2f6d5fa8c2f15d190ddc051d3cc12cbc86f8c1dd.tar.xz
Merge pull request #7771
5e6762d EasyLogging++: Add UTests, that protect against regressions (mj-xmr)
-rw-r--r--tests/unit_tests/logging.cpp13
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;
+}