Commit eb7e38df authored by dmauro's avatar dmauro Committed by Derek Mauro
Browse files

Googletest export

Fix a Python 2 to 3 issue

PiperOrigin-RevId: 389720056
parent aefb4546
...@@ -173,7 +173,7 @@ def GetTestExecutablePath(executable_name, build_dir=None): ...@@ -173,7 +173,7 @@ def GetTestExecutablePath(executable_name, build_dir=None):
'Unable to find the test binary "%s". Please make sure to provide\n' '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' 'a path to the binary via the --build_dir flag or the BUILD_DIR\n'
'environment variable.' % path) 'environment variable.' % path)
print >> sys.stderr, message print(message, file=sys.stderr)
sys.exit(1) sys.exit(1)
return path return path
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment