diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-07 02:48:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-08 16:46:28 +0300 |
commit | 27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f (patch) | |
tree | c2c38e1b4f308ca885dc3c3581560cfbc6833a8e /src/integrity_unittest.cc | |
parent | d4e28aa97cbce34a0053d3c02cf070ef9065439f (diff) | |
download | mv-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.tar.gz mv-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.tar.bz2 mv-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.tar.xz mv-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.zip |
Move resourcemanager from class to namespace.
Diffstat (limited to 'src/integrity_unittest.cc')
-rw-r--r-- | src/integrity_unittest.cc | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/src/integrity_unittest.cc b/src/integrity_unittest.cc index 34312b7b3..41a57f41d 100644 --- a/src/integrity_unittest.cc +++ b/src/integrity_unittest.cc @@ -30,6 +30,8 @@ #include "fs/virtfs/virtfs.h" #include "fs/virtfs/virtfsrwops.h" +#include "gui/gui.h" + #include "input/inputactionmap.h" #include "resources/image/image.h" @@ -93,6 +95,15 @@ static bool compareBuffers(const unsigned char *const buf2) return isCorrect; } +TEST_CASE("integrity leak test1") +{ + logger = new Logger(); + REQUIRE(gui == nullptr); + ResourceManager::cleanOrphans(true); + ResourceManager::deleteInstance(); + delete2(logger); +} + TEST_CASE("integrity tests", "integrity") { setEnv("SDL_VIDEODRIVER", "dummy"); @@ -101,7 +112,6 @@ TEST_CASE("integrity tests", "integrity") XML::initXML(); SDL_Init(SDL_INIT_VIDEO); logger = new Logger(); - ResourceManager::init(); std::string name("data/test/test.zip"); std::string prefix; if (Files::existsLocal(name) == false) @@ -326,7 +336,7 @@ TEST_CASE("integrity tests", "integrity") image->decRef(); } - resourceManager->cleanOrphans(true); + ResourceManager::cleanOrphans(true); delete client; client = nullptr; @@ -336,3 +346,12 @@ TEST_CASE("integrity tests", "integrity") delete2(logger); // VirtFs::deinit(); } + +TEST_CASE("integrity leak test2") +{ + logger = new Logger(); + REQUIRE(gui == nullptr); + ResourceManager::cleanOrphans(true); + ResourceManager::deleteInstance(); + delete2(logger); +} |