diff options
| -rw-r--r-- | llvm/utils/lit/lit/formats/googletest.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/utils/lit/lit/formats/googletest.py b/llvm/utils/lit/lit/formats/googletest.py index 748dcc7fc67..a1ecced52a8 100644 --- a/llvm/utils/lit/lit/formats/googletest.py +++ b/llvm/utils/lit/lit/formats/googletest.py @@ -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 |

