diff options
Diffstat (limited to 'llvm/utils/lit')
-rw-r--r-- | llvm/utils/lit/lit/formats/googletest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/utils/lit/lit/formats/googletest.py b/llvm/utils/lit/lit/formats/googletest.py index a1ecced52a8..3ce57917113 100644 --- a/llvm/utils/lit/lit/formats/googletest.py +++ b/llvm/utils/lit/lit/formats/googletest.py @@ -53,7 +53,8 @@ class GoogleTest(TestFormat): ln = ln[index*2:] if ln.endswith('.'): nested_tests.append(ln) - elif ln.startswith('DISABLED_'): + elif any([name.startswith('DISABLED_') + for name in nested_tests + [ln]]): # Gtest will internally skip these tests. No need to launch a # child process for it. continue |