summaryrefslogtreecommitdiff
path: root/src/integrity_unittest.cc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-03-01 02:19:37 +0300
committerAndrei Karas <akaras@inbox.ru>2017-03-01 02:19:37 +0300
commit0f172abb004bed203f8bf329e4f43eb174a8a58c (patch)
tree3ad72517bf0a64a646c7360cf027234c7fc68737 /src/integrity_unittest.cc
parentaf8edd3f2f53cb2ece9a7b1f6a62bd5e7ce57a9a (diff)
downloadplus-0f172abb004bed203f8bf329e4f43eb174a8a58c.tar.gz
plus-0f172abb004bed203f8bf329e4f43eb174a8a58c.tar.bz2
plus-0f172abb004bed203f8bf329e4f43eb174a8a58c.tar.xz
plus-0f172abb004bed203f8bf329e4f43eb174a8a58c.zip
Fix compilation without physfs.
Also split fs related files to virtfs and physfs.
Diffstat (limited to 'src/integrity_unittest.cc')
-rw-r--r--src/integrity_unittest.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/integrity_unittest.cc b/src/integrity_unittest.cc
index b7b97321a..58e22772a 100644
--- a/src/integrity_unittest.cc
+++ b/src/integrity_unittest.cc
@@ -45,7 +45,9 @@
#include "utils/env.h"
#include "utils/delete2.h"
+#ifdef USE_PHYSFS
#include <physfs.h>
+#endif // USE_PHYSFS
#include <SDL_image.h>
#include "debug.h"
@@ -260,6 +262,7 @@ TEST_CASE("integrity tests", "integrity")
REQUIRE(compareBuffers(buf) == true);
}
+#ifdef USE_PHYSFS
SECTION("integrity Loader::getImage test 5")
{
VirtFs::addZipToSearchPath("data/test/test.zip", Append_false);
@@ -402,6 +405,7 @@ TEST_CASE("integrity tests", "integrity")
VirtFs::removeZipFromSearchPath("../data/test/test.zip");
REQUIRE(compareBuffers(buf) == true);
}
+#endif // USE_PHYSFS
SECTION("integrity Loader::getImage test 7")
{