summaryrefslogtreecommitdiff
path: root/test/memory/main.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2023-11-21 19:56:25 -0500
committerJonathan Bradley <jcb@pikum.xyz>2023-11-21 19:56:25 -0500
commitd43ef1a1c0873b235a7e7ebcfb27a5f7d2b25303 (patch)
tree803408bbdb09fcc4cb8adbf82c87c9a84aebb3f5 /test/memory/main.cpp
parent79bb6ab8c0c7b3ecc14926cd682224ca7c01f094 (diff)
checkpoint - memory overhual including tests
Diffstat (limited to 'test/memory/main.cpp')
-rw-r--r--test/memory/main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/memory/main.cpp b/test/memory/main.cpp
new file mode 100644
index 0000000..4483c91
--- /dev/null
+++ b/test/memory/main.cpp
@@ -0,0 +1,6 @@
+#include "gtest/gtest.h"
+
+int main(int argc, char **argv) {
+ ::testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}