##// END OF EJS Templates
tags: drop nested function
tags: drop nested function

File last commit:

r7630:a679bd37 default
r8854:980f5b7c default
Show More
test-up-issue1456
24 lines | 274 B | text/plain | TextLexer
/ tests / test-up-issue1456
Benoit Boissinot
correctly update dirstate after update+mode change (issue1456)
r7569 #!/bin/sh
rm -rf a
hg init a
cd a
echo foo > foo
hg ci -qAm0
chmod +x foo
hg ci -m1
hg co -q 0
echo dirty > foo
sleep 1
hg up -q
cat foo
hg st -A
Patrick Mezard
merge: fix execute bit update issue introduced by 89207edf3973
r7630 echo '% validate update of standalone execute bit change'
hg up -C 0
chmod -x foo
hg ci -m removeexec
hg up -C 0
hg up
hg st