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 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 `-` as a command-line option. This patch adds support for `-` to mean stdin. Reviewed By: probinson, rnk Differential Revision: https://reviews.llvm.org/D67643
16 lines
622 B
Plaintext
16 lines
622 B
Plaintext
# Check that diff falls back to binary mode if it cannot decode a file.
|
|
|
|
# RUN: diff -u diff-in.bin diff-in.bin
|
|
# RUN: diff -u diff-in.utf16 diff-in.bin && false || true
|
|
# RUN: diff -u diff-in.utf8 diff-in.bin && false || true
|
|
# RUN: diff -u diff-in.bin diff-in.utf8 && false || true
|
|
|
|
# RUN: cat diff-in.bin | diff -u - diff-in.bin
|
|
# RUN: cat diff-in.bin | diff -u diff-in.bin -
|
|
# RUN: cat diff-in.bin | diff -u diff-in.utf16 - && false || true
|
|
# RUN: cat diff-in.bin | diff -u diff-in.utf8 - && false || true
|
|
# RUN: cat diff-in.bin | diff -u - diff-in.utf8 && false || true
|
|
|
|
# Fail so lit will print output.
|
|
# RUN: false
|