Re: [Lldb-commits] [PATCH] D16938: A number of improvements to decorator conditionals

2016-02-08 Thread Zachary Turner via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL260135: A number of improvements to decorator conditionals. (authored by zturner). Changed prior to commit: http://reviews.llvm.org/D16938?vs=47068&id=47233#toc Repository: rL LLVM http://reviews.ll

Re: [Lldb-commits] [PATCH] D16938: A number of improvements to decorator conditionals

2016-02-08 Thread Todd Fiala via lldb-commits
tfiala accepted this revision. tfiala added a comment. LGTM. Regarding the section Pavel was looking at, on the Apple side we have a simulator target that is not technically remote, but isn't really local either. I'll have to look at that if/when we actually want to mark a simulator test as f

Re: [Lldb-commits] [PATCH] D16938: A number of improvements to decorator conditionals

2016-02-08 Thread Pavel Labath via lldb-commits
labath accepted this revision. labath added a comment. This revision is now accepted and ready to land. Looks good, after applying one fix. Comment at: packages/Python/lldbsuite/test/decorators.py:148 @@ +147,3 @@ +skip_for_triple = _match_decorator_property(triple, lld

Re: [Lldb-commits] [PATCH] D16938: A number of improvements to decorator conditionals

2016-02-05 Thread Todd Fiala via lldb-commits
tfiala added a comment. I'll have a look at this after I get through http://reviews.llvm.org/D16936. Concept sounds great. http://reviews.llvm.org/D16938 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailm

Re: [Lldb-commits] [PATCH] D16938: A number of improvements to decorator conditionals

2016-02-05 Thread Zachary Turner via lldb-commits
zturner updated this revision to Diff 47068. zturner added a comment. Minor change that allows any iterable to be used (not just lists), and also recurses through the `_match_decorator_property` function for each item in the iterable, instead of just doing a simple list membership. Combined wit

[Lldb-commits] [PATCH] D16938: A number of improvements to decorator conditionals

2016-02-05 Thread Zachary Turner via lldb-commits
zturner created this revision. zturner added reviewers: tfiala, labath, tberghammer. zturner added a subscriber: lldb-commits. The goal here is to try to improve consistency across the variety of decorators we support. This patch makes the following changes: * Change the `not_in` function to be