summaryrefslogtreecommitdiffstats
path: root/googletest/src
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-07-30 18:01:17 (GMT)
committerGitHub <noreply@github.com>2018-07-30 18:01:17 (GMT)
commitf978c651ed73116a9970e8c827fbf914ea6730f1 (patch)
treea3e96c08991c9a7fde9353d067827d50c98a553b /googletest/src
parent309e8a271e9aca1ef4aab899ce5d2d07c42123bb (diff)
parent4f160f737078a827f1702e69b5964322ac860598 (diff)
downloadgoogletest-f978c651ed73116a9970e8c827fbf914ea6730f1.zip
googletest-f978c651ed73116a9970e8c827fbf914ea6730f1.tar.gz
googletest-f978c651ed73116a9970e8c827fbf914ea6730f1.tar.bz2
Merge branch 'master' into masterrefs/pull/1685/head
Diffstat (limited to 'googletest/src')
-rw-r--r--googletest/src/gtest_main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/src/gtest_main.cc b/googletest/src/gtest_main.cc
index 5e9c94c..f039d00 100644
--- a/googletest/src/gtest_main.cc
+++ b/googletest/src/gtest_main.cc
@@ -32,7 +32,7 @@
#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();
}