From ea323a3b4b99684447345a376b7de7c736d14dd2 Mon Sep 17 00:00:00 2001 From: Jacob Dufault Date: Fri, 22 Dec 2017 09:14:11 -0800 Subject: [PATCH] Actually skip the test --- src/test.cc | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/test.cc b/src/test.cc index f8c27047..54a5a04c 100644 --- a/src/test.cc +++ b/src/test.cc @@ -5,8 +5,6 @@ #include "serializer.h" #include "utils.h" -#include - void Write(const std::vector& strs) { for (const std::string& str : strs) std::cout << str << std::endl; @@ -119,9 +117,9 @@ void RunIndexTests(const std::string& filter_path) { for (std::string path : GetFilesInFolder("tests", true /*recursive*/, true /*add_folder_to_path*/)) { if (!RunObjectiveCIndexTests() && EndsWithAny(path, {".m", ".mm"})) { - LOG_S(INFO) << "Skipping \"" << path - << "\" since this platform does not support running " - "Objective-C tests."; + std::cout << "Skipping \"" << path << "\" since this platform does not " + << "support running Objective-C tests."; + continue; } float memory_before = GetProcessMemoryUsedInMb();