]> granicus.if.org Git - llvm/commit
[lit] Extend internal diff to support -U
authorJoel E. Denny <jdenny.ornl@gmail.com>
Thu, 10 Oct 2019 17:40:12 +0000 (17:40 +0000)
committerJoel E. Denny <jdenny.ornl@gmail.com>
Thu, 10 Oct 2019 17:40:12 +0000 (17:40 +0000)
commit6e09104148b756cac345eea7cf4a3bfdd2af5dc9
tree26733a76f938a008f0a9d304212e0ed554b49157
parent6575e39e15b8328de4408191f20f5a53871a0e5e
[lit] Extend internal diff to support -U

When using lit's internal shell, RUN lines like the following
accidentally execute an external `diff` instead of lit's internal
`diff`:

```
 # RUN: program | diff -U1 file -
```

Such cases exist now, in `clang/test/Analysis` for example.  We are
preparing patches to ensure lit's internal `diff` is called in such
cases, which will then fail because lit's internal `diff` doesn't
recognize `-U` as a command-line option.  This patch adds `-U`
support.

Reviewed By: rnk

Differential Revision: https://reviews.llvm.org/D68668

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@374392 91177308-0d34-0410-b5e6-96231b3b80d8
utils/lit/lit/builtin_commands/diff.py
utils/lit/tests/Inputs/shtest-shell/diff-unified.txt [new file with mode: 0644]
utils/lit/tests/max-failures.py
utils/lit/tests/shtest-shell.py