diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-17 02:48:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-17 02:48:17 +0300 |
commit | 8d32becc5b0fe645d1b8dc4245310ff35ebd8777 (patch) | |
tree | 26b25e949a6a787c8d85e452545e3a8bfa70de06 /src/integrity_unittest.cc | |
parent | 23f8cc7c1db313710180c0b1864a93cc76d2492d (diff) | |
download | plus-8d32becc5b0fe645d1b8dc4245310ff35ebd8777.tar.gz plus-8d32becc5b0fe645d1b8dc4245310ff35ebd8777.tar.bz2 plus-8d32becc5b0fe645d1b8dc4245310ff35ebd8777.tar.xz plus-8d32becc5b0fe645d1b8dc4245310ff35ebd8777.zip |
Fix unit tests if build with SDL2 support.
Diffstat (limited to 'src/integrity_unittest.cc')
-rw-r--r-- | src/integrity_unittest.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/integrity_unittest.cc b/src/integrity_unittest.cc index 0fbc14efb..c24452ae2 100644 --- a/src/integrity_unittest.cc +++ b/src/integrity_unittest.cc @@ -23,6 +23,9 @@ #include "catch.hpp" #include "client.h" #include "logger.h" +#ifdef USE_SDL2 +#include "graphicsmanager.h" +#endif #include "input/inputactionmap.h" #include "input/inputmanager.h" @@ -73,7 +76,13 @@ TEST_CASE("integrity tests", "integrity") resourceManager->addToSearchPath("../data", Append_false); imageHelper = new SDLImageHelper(); - SDL_SetVideoMode(640, 480, 0, SDL_ANYFORMAT | SDL_SWSURFACE); +#ifdef USE_SDL2 + SDLImageHelper::setRenderer(graphicsManager.createRenderer( + graphicsManager.createWindow(640, 480, 0, + SDL_WINDOW_SHOWN | SDL_SWSURFACE), SDL_RENDERER_SOFTWARE)); +#else + graphicsManager.createWindow(640, 480, 0, SDL_ANYFORMAT | SDL_SWSURFACE); +#endif SECTION("integrity test 1") { |