[Lldb-commits] [lldb] a06c28d - Temporarily revert "[test] Exit with an error if no tests are run."

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 11 01:52:23 PDT 2020


On 04/08/2020 17:34, Jordan Rupprecht via lldb-commits wrote:
> Thanks, that explains it! Namely this part:
> 
> if sys.platform.startswith('win32'):
>     # llvm.org/pr22274 <http://llvm.org/pr22274>: need a pexpect
> replacement for windows
>     class PExpectTest(object):
>         pass
> else:
>     import pexpect
>     class PExpectTest(TestBase):
> 
> For this change to reland, I'll need to make it always inherit from
> TestBase, but suppressed in some other way (maybe seeing if decorators
> like @skipIfWindows can be applied to whole test classes)

I believe that should be possible for @skipIfWindows (though not for
some of our other decorators).

pl


More information about the lldb-commits mailing list