blob: d16ce75acbe904151340e37e6976f8c7c21ed05b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# RUN: echo 'foo' > %t.foo0
# RUN: echo 'foo' > %t.foo1
# RUN: echo 'bar' > %t.bar
# diff fails.
# RUN: not diff %t.foo0 %t.bar
# RUN: not not not diff %t.foo0 %t.bar
# RUN: not not not not not diff %t.foo0 %t.bar
# diff succeeds.
# RUN: diff %t.foo0 %t.foo1
# RUN: not not diff %t.foo0 %t.foo1
# RUN: not not not not diff %t.foo0 %t.foo1
# diff succeeds but we expect failure.
# RUN: not diff %t.foo0 %t.foo1
|