diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-04-07 18:55:48 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-04-11 11:00:34 -0700 |
commit | 1c7c5af69df3edc19ba48697d350de087b9243cf (patch) | |
tree | c9538a61d974634db4aa6f3ae20d4ff9078ad75e /test/src/main.cpp | |
parent | c507b8a693d91dea1b0018f9105553128a245146 (diff) | |
download | qtlocation-mapboxgl-1c7c5af69df3edc19ba48697d350de087b9243cf.tar.gz |
[ios] Run core unit tests in CI
Diffstat (limited to 'test/src/main.cpp')
-rw-r--r-- | test/src/main.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/src/main.cpp b/test/src/main.cpp index f2d2944ec7..a481dc5dc3 100644 --- a/test/src/main.cpp +++ b/test/src/main.cpp @@ -1,6 +1,5 @@ -#include <mbgl/test/util.hpp> +#include <mbgl/test.hpp> -GTEST_API_ int main(int argc, char *argv[]) { - testing::InitGoogleTest(&argc, argv); - return RUN_ALL_TESTS(); +int main(int argc, char *argv[]) { + return mbgl::runTests(argc, argv); } |