summaryrefslogtreecommitdiff
path: root/render-test/ios/ios_test_runner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'render-test/ios/ios_test_runner.cpp')
-rw-r--r--render-test/ios/ios_test_runner.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/render-test/ios/ios_test_runner.cpp b/render-test/ios/ios_test_runner.cpp
new file mode 100644
index 0000000000..842318c64a
--- /dev/null
+++ b/render-test/ios/ios_test_runner.cpp
@@ -0,0 +1,40 @@
+#include "ios_test_runner.hpp"
+
+#include <mbgl/render_test.hpp>
+
+#include <mbgl/util/logging.hpp>
+
+#include <vector>
+
+#define EXPORT __attribute__((visibility("default")))
+
+EXPORT
+bool TestRunner::startTest(const std::string& manifest) {
+ auto runTestWithManifest = [](const std::string& manifest) -> bool {
+ std::vector<std::string> arguments = {"mbgl-render-test-runner", "-p", manifest};
+ std::vector<char*> argv;
+ for (const auto& arg : arguments) {
+ argv.push_back(const_cast<char*>(arg.data()));
+ }
+ argv.push_back(nullptr);
+
+ int finishedTestCount = 0;
+ std::function<void()> testStatus = [&]() {
+ mbgl::Log::Info(mbgl::Event::General, "Current finished tests number is '%d' ", ++finishedTestCount);
+ };
+ mbgl::Log::Info(mbgl::Event::General, "Start running RenderTestRunner with manifest: '%s'", manifest.c_str());
+
+ auto result = mbgl::runRenderTests(static_cast<int>(argv.size() - 1), argv.data(), testStatus) == 0;
+ mbgl::Log::Info(mbgl::Event::General, "End running RenderTestRunner with manifest: '%s'", manifest.c_str());
+ return result;
+ };
+
+ auto ret = false;
+ try {
+ ret = runTestWithManifest(manifest);
+ } catch (...) {
+ mbgl::Log::Info(mbgl::Event::General, "testFailed");
+ }
+ mbgl::Log::Info(mbgl::Event::General, "All tests are finished!");
+ return ret;
+}