[lit] Skip gtest names starting with DISABLED_

The sanitizer test suite uses this idiom to disable a test.  Now that we
actually check if a test ran after invoking it, we see that zero tests
ran, and complain.

Instead, ignore tests starting with DISABLED_ completely. Fixes the
sanitizer test suite failures on Windows.

llvm-svn: 234247
This commit is contained in:
Reid Kleckner 2015-04-06 22:16:58 +00:00
parent 6d0b3704b3
commit 4e25cfa167
1 changed files with 4 additions and 0 deletions

View File

@ -53,6 +53,10 @@ class GoogleTest(TestFormat):
ln = ln[index*2:]
if ln.endswith('.'):
nested_tests.append(ln)
elif ln.startswith('DISABLED_'):
# Gtest will internally skip these tests. No need to launch a
# child process for it.
continue
else:
yield ''.join(nested_tests) + ln