blob: c1817fd1e90e501aa3447b8b31e44984590e5b69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Check diff ("diff -I") which is aimed to ignore changes where all lines match RE.
# RUN: echo 'foo' > %t.0
# RUN: echo 'bar1' >> %t.0
# RUN: echo 'foo' >> %t.0
# RUN: echo 'foo' > %t.1
# RUN: echo 'bar2' >> %t.1
# RUN: echo 'foo' >> %t.1
# RUN: diff -I "bar*" %t.0 %t.1
|