summaryrefslogtreecommitdiff
path: root/test/src/mbgl
diff options
context:
space:
mode:
authorJuha Alanen <juha.alanen@mapbox.com>2019-12-19 15:55:39 +0200
committerJuha Alanen <juha.alanen@mapbox.com>2020-01-10 17:19:30 +0200
commit0b3942572e5fc7be575ff15c82a9e31d508609f7 (patch)
treed3ef09c2117a03bee3b85f5e62a5b9a10c285a9c /test/src/mbgl
parentf24e4ca0689c023cf5499c4a78ba7a20b3e9a4c0 (diff)
downloadqtlocation-mapboxgl-0b3942572e5fc7be575ff15c82a9e31d508609f7.tar.gz
[test] Run unit tests as NativeActivity application on Android
Diffstat (limited to 'test/src/mbgl')
-rw-r--r--test/src/mbgl/test/test.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/src/mbgl/test/test.cpp b/test/src/mbgl/test/test.cpp
index 30df01c488..12a3dff720 100644
--- a/test/src/mbgl/test/test.cpp
+++ b/test/src/mbgl/test/test.cpp
@@ -1,12 +1,9 @@
#include <mbgl/actor/scheduler.hpp>
-#include <mbgl/gfx/backend.hpp>
#include <mbgl/test.hpp>
#include <mbgl/test/util.hpp>
#include <gtest/gtest.h>
-#include <args.hxx>
-
namespace mbgl {
int runTests(int argc, char *argv[]) {
@@ -16,11 +13,6 @@ int runTests(int argc, char *argv[]) {
testing::InitGoogleTest(&argc, argv);
- args::ArgumentParser argumentParser("Unit tests");
- args::ValueFlag<std::string> backendValue(argumentParser, "Backend", "Rendering backend", {"backend"});
-
- argumentParser.ParseCLI(argc, argv);
-
return RUN_ALL_TESTS();
}