This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1043783862b [Attributor] Extend anonymous namespace. NFC. new e60c336a1d9 Reland r374388: [lit] Make internal diff work in pipelines new 725593eab9c Reland r374389: [lit] Clean up internal diff's encoding handling new fd50a8256e3 Reland r374390: [lit] Extend internal diff to support `-` argument new 066fa526cbd Reland r374392: [lit] Extend internal diff to support -U new 76211a391a3 [lit] Fix internal diff's --strip-trailing-cr and use it
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: test/MC/AsmParser/preserve-comments.s | 2 +- test/tools/llvm-cxxmap/remap.test | 2 +- test/tools/llvm-profdata/profile-symbol-list.test | 2 +- test/tools/llvm-profdata/roundtrip.test | 10 +- test/tools/llvm-profdata/sample-remap.test | 2 +- 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.dos | 3 + utils/lit/tests/Inputs/shtest-shell/diff-in.unix | 3 + 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 + .../Inputs/shtest-shell/diff-strip-trailing-cr.txt | 10 + .../lit/tests/Inputs/shtest-shell/diff-unified.txt | 38 +++ utils/lit/tests/max-failures.py | 2 +- utils/lit/tests/shtest-shell.py | 341 ++++++++++++++++++++- 21 files changed, 679 insertions(+), 251 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.dos create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-in.unix 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-strip-trailing-cr.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-unified.txt