aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/src/gmock_main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'googlemock/src/gmock_main.cc')
-rw-r--r--googlemock/src/gmock_main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/src/gmock_main.cc b/googlemock/src/gmock_main.cc
index 89c81831..d9e71700 100644
--- a/googlemock/src/gmock_main.cc
+++ b/googlemock/src/gmock_main.cc
@@ -55,7 +55,7 @@ GTEST_API_ int _tmain(int argc, TCHAR** argv) {
#else
GTEST_API_ int main(int argc, char** argv) {
#endif // __MSC_VER
- std::cout << "Running main() from gmock_main.cc\n";
+ std::cout << "Running main() from " << __FILE__ << '\n';
// Since Google Mock depends on Google Test, InitGoogleMock() is
// also responsible for initializing Google Test. Therefore there's
// no need for calling testing::InitGoogleTest() separately.