mirror of
https://github.com/MaskRay/ccls.git
synced 2025-01-19 12:05:50 +00:00
Actually skip the test
This commit is contained in:
parent
43b44bb5e5
commit
ea323a3b4b
@ -5,8 +5,6 @@
|
||||
#include "serializer.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include <loguru.hpp>
|
||||
|
||||
void Write(const std::vector<std::string>& 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();
|
||||
|
Loading…
Reference in New Issue
Block a user