##// END OF EJS Templates
Do not use osutil.c with python 2.4 and Windows (issue1364)...
Do not use osutil.c with python 2.4 and Windows (issue1364) Windows python 2.4 os.stat() reports times including DST offset, while osutil.c reports the correct value, which makes status() systematically compare files content. This bug is fixed in python 2.5. Using osutil.py instead of osutil.c is 4x times slower on large repositories but current code is completely unusable. Given few people are likely to use python 2.4 on Windows this solution was considered a good trade-off compared to more invasive solutions trying to address the offset issue.

File last commit:

r7020:5e996540 default
r10521:bde1bb25 stable
Show More
test-mq-qdelete
67 lines | 859 B | text/plain | TextLexer
Brendan Cully
mq: add qdelete --forget option...
r3088 #!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH
hg init a
cd a
echo 'base' > base
hg ci -Ambase -d '1 0'
Benoit Boissinot
make test-mq-qdelete work reliably (issue1180)...
r7020 hg qnew -d '1 0' a
hg qnew -d '1 0' b
hg qnew -d '1 0' c
Brendan Cully
mq: add qdelete --forget option...
r3088
Brendan Cully
mq: require patch argument or revision for qdelete
r4736 hg qdel
Brendan Cully
mq: add qdelete --forget option...
r3088 hg qdel c
hg qpop
hg qdel c
hg qseries
ls .hg/patches
hg qpop
hg qdel -k b
ls .hg/patches
Brendan Cully
mq: make qdelete without -k or a subrepository delete all patches
r3375 hg qdel -r a
Brendan Cully
mq: add qdelete --forget option...
r3088 hg qapplied
hg log --template '{rev} {desc}\n'
hg qnew d
hg qnew e
hg qnew f
Brendan Cully
mq: make qdelete without -k or a subrepository delete all patches
r3375 hg qdel -r e
Brendan Cully
Update test-mq-qdelete to use qdel -r
r3376 hg qdel -r qbase:e
Brendan Cully
mq: add qdelete --forget option...
r3088 hg qapplied
hg log --template '{rev} {desc}\n'
Dirkjan Ochtman
mq: introduce the qfinish command
r6645
cd ..
hg init b
cd b
echo 'base' > base
Benoit Boissinot
make test-mq-qdelete work reliably (issue1180)...
r7020 hg ci -Ambase -d '1 0'
Dirkjan Ochtman
mq: introduce the qfinish command
r6645
hg qfinish
hg qfinish -a
Benoit Boissinot
make test-mq-qdelete work reliably (issue1180)...
r7020 hg qnew -d '1 0' a
hg qnew -d '1 0' b
hg qnew c # XXX fails to apply by /usr/bin/patch if we put a date
Dirkjan Ochtman
mq: introduce the qfinish command
r6645
hg qfinish 0
hg qfinish b
hg qpop
hg qfinish -a c
hg qpush
hg qfinish qbase:b
hg qapplied
hg log --template '{rev} {desc}\n'
hg qfinish -a c
hg qapplied
hg log --template '{rev} {desc}\n'
ls .hg/patches