Commit 70eceaf8 by vladlosev

Fixes issue 216 (gtest_output_test broken on Solaris

parent c85a77a6
...@@ -249,6 +249,8 @@ class GTestOutputTest(gtest_test_utils.TestCase): ...@@ -249,6 +249,8 @@ class GTestOutputTest(gtest_test_utils.TestCase):
test_output = RemoveMatchingTests(test_output, 'DeathTest') test_output = RemoveMatchingTests(test_output, 'DeathTest')
if not SUPPORTS_TYPED_TESTS: if not SUPPORTS_TYPED_TESTS:
test_output = RemoveMatchingTests(test_output, 'TypedTest') test_output = RemoveMatchingTests(test_output, 'TypedTest')
test_output = RemoveMatchingTests(test_output, 'TypedDeathTest')
test_output = RemoveMatchingTests(test_output, 'TypeParamDeathTest')
if not SUPPORTS_THREADS: if not SUPPORTS_THREADS:
test_output = RemoveMatchingTests(test_output, test_output = RemoveMatchingTests(test_output,
'ExpectFailureWithThreadsTest') 'ExpectFailureWithThreadsTest')
......
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