File: faildiff.test

package info (click to toggle)
quilt 0.68-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,052 kB
  • sloc: sh: 6,102; perl: 1,273; lisp: 522; makefile: 436
file content (40 lines) | stat: -rw-r--r-- 876 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
	$ mkdir patches

	$ quilt new test.diff
	> Patch %{P}test.diff is now on top

	$ cat > test.txt
	< This is test.txt.
	$ quilt add test.txt
	> File test.txt added to patch %{P}test.diff

What happens when diff fails because of a permission error?

	$ chmod -r test.txt

	$ quilt refresh
	>~ .*diff: test\.txt: Permission denied
	> Diff failed on file 'test.txt', aborting
	$ echo %{?}
	> 1

	$ chmod +r test.txt

What happens on binary files?

	$ printf "\\002\\000\\001" > test.bin
	$ quilt add test.bin
	> File test.bin added to patch %{P}test.diff

	$ printf "\\003\\000\\001" > test.bin
	$ quilt diff -pab --no-index 2>/dev/null
	>~ (Files|Binary files) a/test\.bin and b/test\.bin differ
	$ quilt diff -pab --no-index >/dev/null
	> Diff failed on file 'test.bin', aborting
	$ echo %{?}
	> 1

	$ quilt refresh
	> Diff failed on file 'test.bin', aborting
	$ echo %{?}
	> 1