From bf74ba1a02024183ab18e5b56782dcf745240c2c Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 20 Mar 2015 23:18:16 +0100 Subject: [PATCH] [DEV] set compilation back --- test/testArchive.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/testArchive.hpp b/test/testArchive.hpp index c35f0ca..4db2898 100644 --- a/test/testArchive.hpp +++ b/test/testArchive.hpp @@ -13,6 +13,8 @@ #undef __class__ #define __class__ "etktest" +#ifdef ETK_BUILD_MINIZIP + TEST(TestEtkArchive, CreationWrong) { etk::Archive* tmpArchive = etk::Archive::load("nonExistantFile.zip"); EXPECT_NE(tmpArchive, nullptr); @@ -24,4 +26,6 @@ TEST(TestEtkArchive, Display) { ASSERT_NEQ(tmpArchive, nullptr); tmpArchive->display(); } -*/ \ No newline at end of file +*/ + +#endif