summaryrefslogtreecommitdiff
path: root/tests/test-mq-qimport-fail-cleanup.t
diff options
context:
space:
mode:
authorLorry <lorry@roadtrain.codethink.co.uk>2012-08-22 14:49:51 +0100
committerLorry <lorry@roadtrain.codethink.co.uk>2012-08-22 14:49:51 +0100
commita498da43c7fdb9f24b73680c02a4a3588cc62d9a (patch)
treedaf8119dae1749b5165b68033a1b23a7375ce9ce /tests/test-mq-qimport-fail-cleanup.t
downloadmercurial-tarball-a498da43c7fdb9f24b73680c02a4a3588cc62d9a.tar.gz
Tarball conversion
Diffstat (limited to 'tests/test-mq-qimport-fail-cleanup.t')
-rw-r--r--tests/test-mq-qimport-fail-cleanup.t42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/test-mq-qimport-fail-cleanup.t b/tests/test-mq-qimport-fail-cleanup.t
new file mode 100644
index 0000000..a4ae565
--- /dev/null
+++ b/tests/test-mq-qimport-fail-cleanup.t
@@ -0,0 +1,42 @@
+Failed qimport of patches from files should cleanup by recording successfully
+imported patches in series file.
+
+ $ echo "[extensions]" >> $HGRCPATH
+ $ echo "mq=" >> $HGRCPATH
+ $ hg init repo
+ $ cd repo
+ $ echo a > a
+ $ hg ci -Am'add a'
+ adding a
+ $ cat >b.patch<<EOF
+ > diff --git a/a b/a
+ > --- a/a
+ > +++ b/a
+ > @@ -1,1 +1,2 @@
+ > a
+ > +b
+ > EOF
+
+empty series
+
+ $ hg qseries
+
+qimport valid patch followed by invalid patch
+
+ $ hg qimport b.patch fakepatch
+ adding b.patch to series file
+ abort: unable to read file fakepatch
+ [255]
+
+valid patches before fail added to series
+
+ $ hg qseries
+ b.patch
+
+ $ hg pull -q -r 0 . # update phase
+ $ hg qimport -r 0
+ abort: revision 0 is not mutable
+ (see "hg help phases" for details)
+ [255]
+
+ $ cd ..