From fe0296574c4a94be9e98ccdff794ce953a14e409 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Thu, 26 Mar 2015 09:35:51 +0300 Subject: [PATCH] Fixing platform tests. Switching off logging memeory information. --- platform/file_logging.hpp | 6 +++--- platform/platform_tests/downloader_test.cpp | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/platform/file_logging.hpp b/platform/file_logging.hpp index 893342b4ee..7a578bcdc6 100644 --- a/platform/file_logging.hpp +++ b/platform/file_logging.hpp @@ -13,9 +13,9 @@ // #define MWM_LOG_TO_FILE // Writing information about free memory to log file. -#ifdef DEBUG -# define OMIM_ENABLE_LOG_MEMORY_INFO -#endif +// #ifdef DEBUG +// # define OMIM_ENABLE_LOG_MEMORY_INFO +// #endif void LogMessageFile(my::LogLevel level, my::SrcPoint const & srcPoint, string const & msg); void LogMemoryInfo(); diff --git a/platform/platform_tests/downloader_test.cpp b/platform/platform_tests/downloader_test.cpp index 3d45c1dc6d..16f7bdf962 100644 --- a/platform/platform_tests/downloader_test.cpp +++ b/platform/platform_tests/downloader_test.cpp @@ -20,13 +20,13 @@ #include -#define TEST_URL1 "http://scout.mapswithme.com:34568/unit_tests/1.txt" -#define TEST_URL_404 "http://scout.mapswithme.com:34568/unit_tests/notexisting_unittest" -#define TEST_URL_PERMANENT "http://scout.mapswithme.com:34568/unit_tests/permanent" +#define TEST_URL1 "http://scout.alex.bio:34568/unit_tests/1.txt" +#define TEST_URL_404 "http://scout.alex.bio:34568/unit_tests/notexisting_unittest" +#define TEST_URL_PERMANENT "http://scout.alex.bio:34568/unit_tests/permanent" #define TEST_URL_INVALID_HOST "http://not-valid-host123532.ath.cx" -#define TEST_URL_BIG_FILE "http://scout.mapswithme.com:34568/unit_tests/47kb.file" +#define TEST_URL_BIG_FILE "http://scout.alex.bio:34568/unit_tests/47kb.file" #define TEST_URL_HTTPS "https://github.com" -#define TEST_URL_POST "http://scout.mapswithme.com:34568/unit_tests/post.php" +#define TEST_URL_POST "http://scout.alex.bio:34568/unit_tests/post.php" using namespace downloader;