tberghammer added inline comments.
================
Comment at: packages/Python/lldbsuite/test/lldbtest.py:605
@@ -611,2 +604,3 @@
if expected_fn(self):
- raise case._UnexpectedSuccess(sys.exc_info(), bugnumber)
+ xfail_func = unittest2.expectedFailure(func)
+ xfail_func(*args, **kwargs)
----------------
You are swallowing the bug number here
Based on the implementation of unittest2.expectedFailure I think you should
write the following to preserve it (I haven't tested it):
```
unittest2.expectedFailure(bugnumber)(func)
```
http://reviews.llvm.org/D14406
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits