Skip to content
Snippets Groups Projects
Commit 7da6307cc07a authored by Sushil Khanchi's avatar Sushil Khanchi :koala:
Browse files

split: add tests which demonstrate the issue5864

Differential Revision: https://phab.mercurial-scm.org/D6057
parent 3ba9ca537f57
No related branches found
No related tags found
No related merge requests found
......@@ -709,3 +709,45 @@
EDITOR: HG: branch 'default'
EDITOR: HG: changed foo
saved backup bundle to $TESTTMP/f/b/.hg/strip-backup/904c80b40a4a-47fb907f-split.hg (obsstore-off !)
Testing the case in split when commiting flag-only file changes (issue5864)
---------------------------------------------------------------------------
$ hg init $TESTTMP/issue5864
$ cd $TESTTMP/issue5864
$ echo foo > foo
$ hg add foo
$ hg ci -m "initial"
$ chmod +x foo
$ hg ci -m "make executable"
$ hg glog
@ 1:3a2125f0f4cb make executable
|
o 0:51f273a58d82 initial
$ printf 'y\ny\ny\n' | hg split
diff --git a/foo b/foo
old mode 100644
new mode 100755
examine changes to 'foo'? [Ynesfdaq?] y
no changes to record
diff --git a/foo b/foo
old mode 100644
new mode 100755
examine changes to 'foo'? [Ynesfdaq?] y
no changes to record
diff --git a/foo b/foo
old mode 100644
new mode 100755
examine changes to 'foo'? [Ynesfdaq?] y
no changes to record
diff --git a/foo b/foo
old mode 100644
new mode 100755
examine changes to 'foo'? [Ynesfdaq?] abort: response expected
[255]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment