[Lldb-commits] [PATCH] D12039: Make @skipUnlessArch actually skip instead of XFAIL

Chaoren Lin via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 14 14:35:16 PDT 2015


chaoren added inline comments.

================
Comment at: test/lldbtest.py:943
@@ -947,1 +942,3 @@
 
+def skipUnlessArch(archlist):
+    def myImpl(func):
----------------
Is there a reason
```
return unittest2.skipUnless(getArchitecture() in archlist, ...)
```
is not sufficient?

Also, please add a doc string, like the other skip{If,Unless} methods.


http://reviews.llvm.org/D12039





More information about the lldb-commits mailing list