summaryrefslogtreecommitdiffstats
path: root/test/reorder.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/reorder.test')
-rw-r--r--test/reorder.test11
1 files changed, 8 insertions, 3 deletions
diff --git a/test/reorder.test b/test/reorder.test
index b592932..8e45572 100644
--- a/test/reorder.test
+++ b/test/reorder.test
@@ -19,6 +19,7 @@ Regression test: Quilt did reorder files in patches.
$ cat > patches/series
< test.diff -p0
+
$ quilt push -q
> Applying test.diff
> Now at patch test.diff
@@ -28,7 +29,6 @@ Regression test: Quilt did reorder files in patches.
> No patches applied
$ echo one > h
- $ sleep 2
$ cat >> patches/test.diff
< --- h.orig
< +++ h
@@ -41,15 +41,20 @@ Regression test: Quilt did reorder files in patches.
> Now at patch test.diff
$ quilt files
- > f
> g
+ > f
> h
+ $ grep "^+++ " patches/test.diff
+ > +++ g
+ > +++ f
+ > +++ h
+
$ quilt refresh
> Refreshed patch test.diff
$ grep "^+++ " patches/test.diff
- > +++ f
> +++ g
+ > +++ f
> +++ h
$ cd ..