aboutsummaryrefslogtreecommitdiffstats
path: root/test/gtest_test_utils.py
diff options
context:
space:
mode:
authorkosak <kosak@google.com>2014-01-13 22:24:15 +0000
committerkosak <kosak@google.com>2014-01-13 22:24:15 +0000
commit7d1051ce2b3be67d27b200d0050a7ec88c18621b (patch)
treeed5e3c915538976af74959e032815c687ef332d4 /test/gtest_test_utils.py
parent6576c64903765304ac42767cdbbc3824446550b0 (diff)
downloadgoogletest-7d1051ce2b3be67d27b200d0050a7ec88c18621b.tar.gz
googletest-7d1051ce2b3be67d27b200d0050a7ec88c18621b.tar.bz2
googletest-7d1051ce2b3be67d27b200d0050a7ec88c18621b.zip
Make Google Test build cleanly on Visual Studio 2010, 2012, 2013.
Also improve an error message in gtest_test_utils.py.
Diffstat (limited to 'test/gtest_test_utils.py')
-rwxr-xr-xtest/gtest_test_utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/gtest_test_utils.py b/test/gtest_test_utils.py
index 28884bdc..7e3cbcaf 100755
--- a/test/gtest_test_utils.py
+++ b/test/gtest_test_utils.py
@@ -175,9 +175,9 @@ def GetTestExecutablePath(executable_name, build_dir=None):
if not os.path.exists(path):
message = (
- 'Unable to find the test binary. Please make sure to provide path\n'
- 'to the binary via the --build_dir flag or the BUILD_DIR\n'
- 'environment variable.')
+ 'Unable to find the test binary "%s". Please make sure to provide\n'
+ 'a path to the binary via the --build_dir flag or the BUILD_DIR\n'
+ 'environment variable.' % path)
print >> sys.stderr, message
sys.exit(1)