strip: add a --keep test related to removing files from dirstate
authorChristian Delahousse <cdelahousse@fb.com>
Mon, 30 Nov 2015 11:23:15 -0800
changeset 27177 e76b27a642ca
parent 27176 54ace3372f84
child 27178 5ebc4a192550
strip: add a --keep test related to removing files from dirstate When strip builds the list of changedfiles to pass into dirstate.rebuild, it adds files blindly, including those that have been removed. This tests ensures that rebuild can handle this case.
tests/test-strip.t
--- a/tests/test-strip.t	Mon Nov 30 11:23:15 2015 -0800
+++ b/tests/test-strip.t	Mon Nov 30 11:23:15 2015 -0800
@@ -552,12 +552,19 @@
   $ echo b > b
   $ echo d > d
   $ hg strip --keep tip
-  saved backup bundle to $TESTTMP/test/.hg/strip-backup/57e364c8a475-4cfed93c-backup.hg (glob)
+  saved backup bundle to $TESTTMP/test/.hg/strip-backup/*-backup.hg (glob)
   $ hg status
   M b
   ! bar
   ? c
   ? d
+
+... after updating the dirstate
+  $ hg add c
+  $ hg commit -mc
+  $ hg rm c
+  $ hg commit -mc
+  $ hg strip --keep '.^' -q
   $ cd ..
 
 stripping many nodes on a complex graph (issue3299)