diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-01-18 15:17:07 +0100 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-01-18 19:06:32 +0100 |
commit | 49da57393a5c5ddff1a7f60620c38858643b1220 (patch) | |
tree | ab03d4176afac09f8b19e79cd54c852cc65a59ba /test/src | |
parent | c637a658db64c69c6052836790f5e6ef7bcda69c (diff) | |
download | qtlocation-mapboxgl-49da57393a5c5ddff1a7f60620c38858643b1220.tar.gz |
[core] Remove platform-specific main.cpp from MBGL_TEST_FILES
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/main.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/src/main.cpp b/test/src/main.cpp deleted file mode 100644 index d01cf75ffc..0000000000 --- a/test/src/main.cpp +++ /dev/null @@ -1,20 +0,0 @@ -#include <mbgl/test.hpp> -#include <unistd.h> -#include <cstring> -#include <cerrno> -#include <cstdio> - -#define xstr(s) str(s) -#define str(s) #s - -int main(int argc, char *argv[]) { -#ifdef WORK_DIRECTORY - const int result = chdir(xstr(WORK_DIRECTORY)); - if (result != 0) { - fprintf(stderr, "failed to change directory: %s\n", strerror(errno)); - return errno; - } -#endif - - return mbgl::runTests(argc, argv); -} |