This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from aeb6f08 Update domtree incrementally in loop peeling. new ebc14ff [lit] Allow boolean expressions in REQUIRES and XFAIL and UNS [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: docs/TestingGuide.rst | 64 +++--- utils/lit/lit/BooleanExpression.py | 251 +++++++++++++++++++++ utils/lit/lit/Test.py | 118 ++++++++-- utils/lit/lit/TestRunner.py | 156 ++++++++----- .../Inputs/shtest-format/requires-any-missing.txt | 2 - .../Inputs/shtest-format/requires-any-present.txt | 2 - .../tests/Inputs/shtest-format/requires-any.txt | 3 + .../Inputs/shtest-format/requires-missing.txt | 7 +- .../Inputs/shtest-format/requires-present.txt | 4 +- .../tests/Inputs/shtest-format/requires-star.txt | 3 + .../tests/Inputs/shtest-format/requires-triple.txt | 3 + .../shtest-format/unsupported-expr-false.txt | 9 + .../Inputs/shtest-format/unsupported-expr-true.txt | 4 + .../Inputs/shtest-format/unsupported-star.txt | 3 + .../Inputs/shtest-format/xfail-expr-false.txt | 3 + .../tests/Inputs/shtest-format/xfail-expr-true.txt | 4 + utils/lit/tests/boolean-parsing.py | 4 + utils/lit/tests/shtest-format.py | 19 +- utils/lit/tests/unit/TestRunner.py | 65 ++++++ 19 files changed, 607 insertions(+), 117 deletions(-) create mode 100644 utils/lit/lit/BooleanExpression.py delete mode 100644 utils/lit/tests/Inputs/shtest-format/requires-any-missing.txt delete mode 100644 utils/lit/tests/Inputs/shtest-format/requires-any-present.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/requires-any.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/requires-star.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/requires-triple.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/unsupported-expr-false.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/unsupported-expr-true.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/unsupported-star.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/xfail-expr-false.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/xfail-expr-true.txt create mode 100644 utils/lit/tests/boolean-parsing.py