summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2005-09-23 18:30:07 +0000
committerJean Delvare <khali@linux-fr.org>2005-09-23 18:30:07 +0000
commit2f897ab0c9e424d24e54e5c7ba0e71f28fb3baa2 (patch)
tree7e937e3da64a01f46e415ebb8e787d6f8b9dee20 /test
parente23caf74fc13586956595bb2546a59584ea4fe5f (diff)
downloadquilt-2f897ab0c9e424d24e54e5c7ba0e71f28fb3baa2.tar.gz
- Drop test/reorder.test, it duplicates test/sort.test but is less
complete.
Diffstat (limited to 'test')
-rw-r--r--test/reorder.test60
1 files changed, 0 insertions, 60 deletions
diff --git a/test/reorder.test b/test/reorder.test
deleted file mode 100644
index 7bf8c3e..0000000
--- a/test/reorder.test
+++ /dev/null
@@ -1,60 +0,0 @@
-Regression test: Quilt did reorder files in patches.
-
- $ mkdir -p d/patches
- $ cd d
- $ echo one > f
- $ echo one > g
- $ cat > patches/test.diff
- < --- g.orig
- < +++ g
- < @@ -1 +1 @@
- < -one
- < +two
- < --- f.orig
- < +++ f
- < @@ -1 +1 @@
- < -one
- < +two
-
- $ cat > patches/series
- < test.diff -p0
-
- $ quilt push -q
- > Applying patch %{P}test.diff
- > Now at patch %{P}test.diff
-
- $ quilt pop -q
- > Removing patch %{P}test.diff
- > No patches applied
-
- $ echo one > h
- $ cat >> patches/test.diff
- < --- h.orig
- < +++ h
- < @@ -1 +1 @@
- < -one
- < +two
-
- $ quilt push -q
- > Applying patch %{P}test.diff
- > Now at patch %{P}test.diff
-
- $ quilt files
- > g
- > f
- > h
-
- $ grep "^+++ " patches/test.diff
- > +++ g
- > +++ f
- > +++ h
-
- $ quilt refresh
- > Refreshed patch %{P}test.diff
- $ grep "^+++ " patches/test.diff
- > +++ g
- > +++ f
- > +++ h
-
- $ cd ..
- $ rm -rf d