summaryrefslogtreecommitdiff
path: root/test/include/mbgl/test/util.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/include/mbgl/test/util.hpp')
-rw-r--r--test/include/mbgl/test/util.hpp17
1 files changed, 6 insertions, 11 deletions
diff --git a/test/include/mbgl/test/util.hpp b/test/include/mbgl/test/util.hpp
index 959b3e646f..a8b1d1b2c6 100644
--- a/test/include/mbgl/test/util.hpp
+++ b/test/include/mbgl/test/util.hpp
@@ -4,17 +4,12 @@
#include <TargetConditionals.h>
#endif
-#if ANDROID
- #define TEST_READ_ONLY 0
-#elif TARGET_OS_IOS
- #define TEST_READ_ONLY 1
- #undef TEST_HAS_SERVER
- #define TEST_HAS_SERVER 0
-#else
- #define TEST_READ_ONLY 0
- #ifndef TEST_HAS_SERVER
- #define TEST_HAS_SERVER 1
- #endif
+#define TEST_READ_ONLY 0
+
+#if !ANDROID
+#ifndef TEST_HAS_SERVER
+#define TEST_HAS_SERVER 1
+#endif
#endif
#if TARGET_OS_SIMULATOR