From 01f9c536ce5a2ccd719c0d9858653c7b53547ec0 Mon Sep 17 00:00:00 2001 From: Kevin Puetz Date: Mon, 30 Mar 2020 19:21:23 -0500 Subject: [PATCH] googletest-output-test: fix RemoveTestCounts for non-golden platforms This seems to have been missed when renaming "test cases" -> "test suites" in 3a460a26b7a91abf87af7f31b93d29f930e25c82. Presumably no such platform is regularly tested... --- googletest/test/googletest-output-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googletest/test/googletest-output-test.py b/googletest/test/googletest-output-test.py index 6d80d532..1f36bc34 100755 --- a/googletest/test/googletest-output-test.py +++ b/googletest/test/googletest-output-test.py @@ -175,7 +175,7 @@ def RemoveTestCounts(output): output = re.sub(r'\d+ tests?, listed below', '? tests, listed below', output) output = re.sub(r'\d+ FAILED TESTS', '? FAILED TESTS', output) output = re.sub( - r'\d+ tests? from \d+ test cases?', '? tests from ? test cases', output + r'\d+ tests? from \d+ test suites?', '? tests from ? test suites', output ) output = re.sub(r'\d+ tests? from ([a-zA-Z_])', r'? tests from \1', output) return re.sub(r'\d+ tests?\.', '? tests.', output)