Mercurial > hg
view tests/test-mq-symlinks @ 11150:f66ca4431eb9
patchbomb: Reply-To support
From RFC 5322:
an optional reply-to field MAY also be included, which contains the field
name "Reply-To" and a comma-separated list of one or more addresses.
[...]
When the "Reply-To:" field is present, it indicates the address(es) to which
the author of the message suggests that replies be sent. In the absence of
the "Reply-To:" field, replies SHOULD by default be sent to the mailbox(es)
specified in the "From:" field unless otherwise specified by the person
composing the reply.
Reply-To addresses may be specified either via command line with --reply-to
or via the 'email' or 'patchbomb' sections of the config file.
author | Cédric Duval <cedricduval@free.fr> |
---|---|
date | Mon, 10 May 2010 22:06:28 +0200 |
parents | 8cb81d75730c |
children | b0bb72460c44 |
line wrap: on
line source
#!/bin/sh "$TESTDIR/hghave" symlink || exit 80 echo "[extensions]" >> $HGRCPATH echo "mq=" >> $HGRCPATH hg init hg qinit hg qnew base.patch echo aaa > a echo bbb > b echo ccc > c hg add a b c hg qrefresh $TESTDIR/readlink.py a echo '% test replacing a file with a symlink' hg qnew symlink.patch rm a ln -s b a hg qrefresh --git $TESTDIR/readlink.py a hg qpop hg qpush $TESTDIR/readlink.py a echo '% test updating a symlink' rm a ln -s c a hg qnew --git -f updatelink $TESTDIR/readlink.py a hg qpop hg qpush --debug $TESTDIR/readlink.py a hg st echo '% test replacing a symlink with a file' ln -s c s hg add s hg qnew --git -f addlink rm s echo sss > s hg qnew --git -f replacelinkwithfile hg qpop hg qpush cat s hg st echo '% test symlink removal' hg qnew removesl.patch hg rm a hg qrefresh --git hg qpop hg qpush hg st -c