[Lldb-commits] [PATCH] D16936: Remove expectedFailureWindows decorator
Zachary Turner via lldb-commits
lldb-commits at lists.llvm.org
Sun Feb 7 21:27:27 PST 2016
zturner added inline comments.
================
Comment at: packages/Python/lldbsuite/test/decorators.py:170-171
@@ -169,2 +169,4 @@
reason_str = "{} unconditionally"
+ if bugnumber is not None:
+ reason_str = reason_str + " [" + bugnumber + "]"
return reason_str
----------------
Can you try changing this to this and see what happens:
if bugnumber is not None and not six.callable(bugnumber):
reason_str = reason_str + " [" + str(bugnumber) + "]"
http://reviews.llvm.org/D16936
More information about the lldb-commits
mailing list