##// END OF EJS Templates
tests: suppress spurious lchmod error from unzip (issue4088)...
tests: suppress spurious lchmod error from unzip (issue4088) Because lchmod doesn't exist on Linux, unzip should be built without lchmod support. A few distros get this wrong.

File last commit:

r16913:f2719b38 default
r21216:6d632cf8 stable
Show More
test-issue1089.t
26 lines | 321 B | text/troff | Tads3Lexer
http://mercurial.selenic.com/bts/issue1089
$ hg init
$ mkdir a
$ echo a > a/b
$ hg ci -Am m
adding a/b
$ hg rm a
removing a/b (glob)
$ hg ci -m m a
$ mkdir a b
$ echo a > a/b
$ hg ci -Am m
adding a/b
$ hg rm a
removing a/b (glob)
$ cd b
Relative delete:
$ hg ci -m m ../a
$ cd ..