diff options
author | Gennadiy Civil <misterg@google.com> | 2018-07-30 17:31:46 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2018-07-30 17:31:46 (GMT) |
commit | b7cb1bc6f9d63df7ec9c9b0897de047a8c728615 (patch) | |
tree | a874b51783101909098a1af3dfc9cfe48ba036a2 /googletest/src/gtest_main.cc | |
parent | ec13264af4595af8bae9be425ecf09ebf588dce3 (diff) | |
download | googletest-b7cb1bc6f9d63df7ec9c9b0897de047a8c728615.zip googletest-b7cb1bc6f9d63df7ec9c9b0897de047a8c728615.tar.gz googletest-b7cb1bc6f9d63df7ec9c9b0897de047a8c728615.tar.bz2 |
small tweaks, OSS merge cl 206357486
Diffstat (limited to 'googletest/src/gtest_main.cc')
-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 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(); } |