summaryrefslogtreecommitdiffstats
path: root/test/delete.test
blob: 25f3185e9e7d4e511b510d35fbeb743b015cc401 (plain) (blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Test the delete command.

	$ mkdir d
	$ cd d

	$ cat > test.txt
	< Calling pci_match_id() would be more feasible.

	$ quilt new test1
	> Patch %{P}test1 is now on top

	$ quilt add test.txt
	> File test.txt added to patch %{P}test1

	$ cat > test.txt
	< Try the following patch instead.

	$ quilt refresh
	> Refreshed patch %{P}test1

	$ quilt new test2
	> Patch %{P}test2 is now on top

	$ quilt add test.txt
	> File test.txt added to patch %{P}test2

	$ cat > test.txt
	< Ok, that's fine with me if you want to do that instead.

	$ quilt refresh
	> Refreshed patch %{P}test2

	$ quilt pop
	> Removing patch %{P}test2
	> Restoring test.txt
	> 
	> Now at patch %{P}test1

	$ quilt series
	> %{P}test1
	> %{P}test2

	$ quilt delete -n
	> Removed patch %{P}test2

	$ quilt series
	> %{P}test1

	$ quilt pop
	> Removing patch %{P}test1
	> Restoring test.txt
	> 
	> No patches applied

	$ quilt delete test1
	> Removed patch %{P}test1

	$ quilt series

	$ cd ..
	$ rm -rf d