diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-07-30 13:57:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-30 13:57:17 -0400 |
commit | 4f160f737078a827f1702e69b5964322ac860598 (patch) | |
tree | a874b51783101909098a1af3dfc9cfe48ba036a2 | |
parent | 00486476193b0c23334592749db3a77df7d1db40 (diff) | |
parent | 012528ccab9750f10a33d0ae38ffd0f54b9e427b (diff) | |
download | googletest-4f160f737078a827f1702e69b5964322ac860598.tar.gz googletest-4f160f737078a827f1702e69b5964322ac860598.tar.bz2 googletest-4f160f737078a827f1702e69b5964322ac860598.zip |
Merge pull request #1691 from gennadiycivil/master
small tweaks, OSS merge cl 206357486
-rw-r--r-- | googletest/src/gtest_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/src/gtest_main.cc b/googletest/src/gtest_main.cc index 5e9c94cb..f039d00c 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(); } |