This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 065cf229973 gn build: Merge r374381 new 183d96f73d8 [lit] Make internal diff work in pipelines new 238c73b3ab5 [lit] Clean up internal diff's encoding handling new b8f574b8594 [lit] Extend internal diff to support `-` argument new 6575e39e15b gn build: merge r374381 more (effectively a no-op) new 6e09104148b [lit] Extend internal diff to support -U
The 5 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: .../gn/secondary/llvm/lib/DebugInfo/GSYM/BUILD.gn | 1 + utils/lit/lit/TestRunner.py | 224 +--------------- utils/lit/lit/builtin_commands/diff.py | 241 +++++++++++++++++ .../tests/Inputs/shtest-shell/diff-encodings.txt | 15 ++ .../lit/tests/Inputs/shtest-shell/diff-error-0.txt | 3 - utils/lit/tests/Inputs/shtest-shell/diff-in.bin | Bin 0 -> 26 bytes utils/lit/tests/Inputs/shtest-shell/diff-in.utf16 | Bin 0 -> 24 bytes utils/lit/tests/Inputs/shtest-shell/diff-in.utf8 | 3 + utils/lit/tests/Inputs/shtest-shell/diff-pipes.txt | 25 ++ .../tests/Inputs/shtest-shell/diff-r-error-7.txt | 2 + .../tests/Inputs/shtest-shell/diff-r-error-8.txt | 2 + .../lit/tests/Inputs/shtest-shell/diff-unified.txt | 38 +++ utils/lit/tests/max-failures.py | 2 +- utils/lit/tests/shtest-shell.py | 286 ++++++++++++++++++++- 14 files changed, 601 insertions(+), 241 deletions(-) create mode 100644 utils/lit/lit/builtin_commands/diff.py create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-encodings.txt delete mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-error-0.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-in.bin create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-in.utf16 create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-in.utf8 create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-pipes.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-r-error-7.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-r-error-8.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-unified.txt