diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/testmain.cpp | 6 | ||||
-rw-r--r-- | src/test/testmain.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/test/testmain.cpp b/src/test/testmain.cpp index 42e4ea9bd..c150a8b99 100644 --- a/src/test/testmain.cpp +++ b/src/test/testmain.cpp @@ -45,6 +45,12 @@ TestMain::TestMain() : + std::string("/manaplustest.log")); } +TestMain::~TestMain() +{ + delete log; + log = nullptr; +} + void TestMain::initConfig() { mConfig.init(Client::getConfigDirectory() + "/test.xml"); diff --git a/src/test/testmain.h b/src/test/testmain.h index f2913fe30..5e9a94f0d 100644 --- a/src/test/testmain.h +++ b/src/test/testmain.h @@ -36,6 +36,8 @@ class TestMain A_DELETE_COPY(TestMain) + ~TestMain(); + int exec(const bool testAudio = true); static int readValue(const int ver, int def); |