diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-27 00:18:22 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-27 00:18:22 +0000 |
commit | 27cb29a59606af9350fdbd6781fc26d5c054f618 (patch) | |
tree | 9efde48a08176eb9b48bb2ee9c0d93de90bea61b /lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py | |
parent | 0a6564980b548429f3ed54cbd5cbc0a79e83e339 (diff) | |
download | bcm5719-llvm-27cb29a59606af9350fdbd6781fc26d5c054f618.tar.gz bcm5719-llvm-27cb29a59606af9350fdbd6781fc26d5c054f618.zip |
[dotest] Remove long running test "decorator" and re-enable tests.
Today I discovered the skipLongRunningTest decorator and to my surprise
all the tests were passing without the decorator. They don't seem to be
that expensive either, they take a few seconds but we have tests that
take much longer than that. As such I propose to remove the decorator
and enable them by default.
Differential revision: https://reviews.llvm.org/D66774
llvm-svn: 369995
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py b/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py index 2af370e32aa..204aa27ad17 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py @@ -145,9 +145,6 @@ for d in test_source_dirs: for f in test_source_files: if f.endswith(".cpp") or f.endswith(".c"): @add_test_categories(["dwarf"]) - @unittest2.skipIf( - TestBase.skipLongRunningTest(), - "Skip this long running test") def test_function_dwarf(self, f=f): if f.endswith(".cpp"): d = {'CXX_SOURCES': f} |