aboutsummaryrefslogtreecommitdiff
path: root/test/googletest/src/gtest_main.cc
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-03-24 20:45:54 +0100
committerEven Rouault <even.rouault@spatialys.com>2019-03-24 20:45:54 +0100
commit0afadbf9629345d571409c2ea3c25a6cd9cce14e (patch)
treead22e3659a33c951f3ba3f5533c3ac657270eec6 /test/googletest/src/gtest_main.cc
parent3e37b354194b4d42acd247c32ca97e45ac40af1e (diff)
downloadPROJ-0afadbf9629345d571409c2ea3c25a6cd9cce14e.tar.gz
PROJ-0afadbf9629345d571409c2ea3c25a6cd9cce14e.zip
Update internal version of googletest to v1.8.1
This is already what is used by cmake builds
Diffstat (limited to 'test/googletest/src/gtest_main.cc')
-rw-r--r--test/googletest/src/gtest_main.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/googletest/src/gtest_main.cc b/test/googletest/src/gtest_main.cc
index f3028225..2113f621 100644
--- a/test/googletest/src/gtest_main.cc
+++ b/test/googletest/src/gtest_main.cc
@@ -28,11 +28,10 @@
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <stdio.h>
-
#include "gtest/gtest.h"
GTEST_API_ int main(int argc, char **argv) {
- printf("Running main() from gtest_main.cc\n");
+ printf("Running main() from %s\n", __FILE__);
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}