Merge pull request #3751 from noiseless:gtest-help-test-OpenBSD
PiperOrigin-RevId: 427207981 Change-Id: Ib93f8f61bf568d4651f9148fbc522288308c0d71
This commit is contained in:
commit
06519cedc3
@ -45,6 +45,7 @@ from googletest.test import gtest_test_utils
|
|||||||
IS_LINUX = os.name == 'posix' and os.uname()[0] == 'Linux'
|
IS_LINUX = os.name == 'posix' and os.uname()[0] == 'Linux'
|
||||||
IS_GNUHURD = os.name == 'posix' and os.uname()[0] == 'GNU'
|
IS_GNUHURD = os.name == 'posix' and os.uname()[0] == 'GNU'
|
||||||
IS_GNUKFREEBSD = os.name == 'posix' and os.uname()[0] == 'GNU/kFreeBSD'
|
IS_GNUKFREEBSD = os.name == 'posix' and os.uname()[0] == 'GNU/kFreeBSD'
|
||||||
|
IS_OPENBSD = os.name == 'posix' and os.uname()[0] == 'OpenBSD'
|
||||||
IS_WINDOWS = os.name == 'nt'
|
IS_WINDOWS = os.name == 'nt'
|
||||||
|
|
||||||
PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath('gtest_help_test_')
|
PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath('gtest_help_test_')
|
||||||
@ -113,7 +114,7 @@ class GTestHelpTest(gtest_test_utils.TestCase):
|
|||||||
self.assertEquals(0, exit_code)
|
self.assertEquals(0, exit_code)
|
||||||
self.assert_(HELP_REGEX.search(output), output)
|
self.assert_(HELP_REGEX.search(output), output)
|
||||||
|
|
||||||
if IS_LINUX or IS_GNUHURD or IS_GNUKFREEBSD:
|
if IS_LINUX or IS_GNUHURD or IS_GNUKFREEBSD or IS_OPENBSD:
|
||||||
self.assert_(STREAM_RESULT_TO_FLAG in output, output)
|
self.assert_(STREAM_RESULT_TO_FLAG in output, output)
|
||||||
else:
|
else:
|
||||||
self.assert_(STREAM_RESULT_TO_FLAG not in output, output)
|
self.assert_(STREAM_RESULT_TO_FLAG not in output, output)
|
||||||
|
Loading…
Reference in New Issue
Block a user