diff options
author | Joel E. Denny <jdenny.ornl@gmail.com> | 2019-10-12 18:52:05 +0000 |
---|---|---|
committer | Joel E. Denny <jdenny.ornl@gmail.com> | 2019-10-12 18:52:05 +0000 |
commit | b3f157a90087858fb45de4ecdafcae9d4246fb62 (patch) | |
tree | 8d02c90cfa839735db664c6098fd05565f5432e3 /llvm/utils/lit/tests/Inputs/shtest-shell/diff-unified.txt | |
parent | 57046e8fd9b9dd91358b92862d0591c6ac717750 (diff) | |
download | bcm5719-llvm-b3f157a90087858fb45de4ecdafcae9d4246fb62.tar.gz bcm5719-llvm-b3f157a90087858fb45de4ecdafcae9d4246fb62.zip |
Revert 374651: "Reland r374392: [lit] Extend internal diff to support -U"
This series of patches still breaks a Windows bot.
llvm-svn: 374680
Diffstat (limited to 'llvm/utils/lit/tests/Inputs/shtest-shell/diff-unified.txt')
-rw-r--r-- | llvm/utils/lit/tests/Inputs/shtest-shell/diff-unified.txt | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/llvm/utils/lit/tests/Inputs/shtest-shell/diff-unified.txt b/llvm/utils/lit/tests/Inputs/shtest-shell/diff-unified.txt deleted file mode 100644 index e977c193247..00000000000 --- a/llvm/utils/lit/tests/Inputs/shtest-shell/diff-unified.txt +++ /dev/null @@ -1,38 +0,0 @@ -# RUN: echo 1 > %t.foo -# RUN: echo 2 >> %t.foo -# RUN: echo 3 >> %t.foo -# RUN: echo 4 >> %t.foo -# RUN: echo 5 >> %t.foo -# RUN: echo 6 foo >> %t.foo -# RUN: echo 7 >> %t.foo -# RUN: echo 8 >> %t.foo -# RUN: echo 9 >> %t.foo -# RUN: echo 10 >> %t.foo -# RUN: echo 11 >> %t.foo - -# RUN: echo 1 > %t.bar -# RUN: echo 2 >> %t.bar -# RUN: echo 3 >> %t.bar -# RUN: echo 4 >> %t.bar -# RUN: echo 5 >> %t.bar -# RUN: echo 6 bar >> %t.bar -# RUN: echo 7 >> %t.bar -# RUN: echo 8 >> %t.bar -# RUN: echo 9 >> %t.bar -# RUN: echo 10 >> %t.bar -# RUN: echo 11 >> %t.bar - -# Default is 3 lines of context. -# RUN: diff -u %t.foo %t.bar && false || true - -# Override default of 3 lines of context. -# RUN: diff -U 2 %t.foo %t.bar && false || true -# RUN: diff -U4 %t.foo %t.bar && false || true -# RUN: diff -U0 %t.foo %t.bar && false || true - -# Check bad -U argument. -# RUN: diff -U 30.1 %t.foo %t.foo && false || true -# RUN: diff -U-1 %t.foo %t.foo && false || true - -# Fail so lit will print output. -# RUN: false |