summaryrefslogtreecommitdiff
path: root/test/src/mbgl/test/test.cpp
blob: 6949d2fb90e10369ab49c34b2fb70595a7d991ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <mbgl/test.hpp>
#include <mbgl/test/util.hpp>
#include <mbgl/util/thread.hpp>
#include <gtest/gtest.h>

namespace mbgl {

int runTests(int argc, char *argv[]) {
#if TEST_HAS_SERVER
    std::cout << "Starting server\n";
    util::Thread<test::Server> server({"Webserver"}, true);
    server.invokeSync(&test::Server::start);

    //Sleep so we know the server actually started
    usleep(5 * 1000 * 1000);
#endif

    testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}

} // namespace mbgl