##// END OF EJS Templates
diffstat: fix parsing of filenames with spaces...
diffstat: fix parsing of filenames with spaces The patch changes the output of "hg diff --stat" when one file whose filename has spaces has changed, making it get the full filename instead of just the substring between the last space and the end of the filename. It also changes the diffstat generated by "hg email -d" when one of the commit messages starts with "diff". Because of the regex used to parse the filename, the diffstat generated by "hg email -d" will still be not correct if a commit message starts with "diff -r ". Before the patch Mercurial has the following behavior: $ echo "foobar">"file with spaces" $ hg add "file with spaces" $ hg diff --stat spaces | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) $ hg diff --git --stat file with spaces | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) After the patch: $ echo "foobar">"file with spaces" $ hg add "file with spaces" $ hg diff --stat file with spaces | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) $ hg diff --git --stat file with spaces | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) Before the patch: $ hg add mercurial/patch.py tests/tests-diffstat.t $ hg commit -m "diffstat: fix parsing of filenames" $ hg email -d --test tip This patch series consists of 1 patches. diffstat: fix parsing of filenames [...] filenames | 0 mercurial/patch.py | 6 ++++-- tests/test-diffstat.t | 17 +++++++++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) [...] After the patch: $ hg email -d --test tip This patch series consists of 1 patches. diffstat: fix parsing of filenames [...] mercurial/patch.py | 6 ++++-- tests/test-diffstat.t | 17 +++++++++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) [...]

File last commit:

r12578:fdb0983a default
r13395:104c9ed9 default
Show More
test-serve
58 lines | 1.2 KiB | text/plain | TextLexer
Joel Rosdahl
Add test reproducing a bug in "hg serve -v"
r4504 #!/bin/sh
Patrick Mezard
test-serve: replace copy/paste with shell function
r6300 hgserve()
{
Thomas Arendsen Hein
test-serve: Show if port config and option are correctly used...
r10633 hg serve -a localhost -d --pid-file=hg.pid -E errors.log -v $@ \
| sed -e "s/:$HGPORT1\\([^0-9]\\)/:HGPORT1\1/g" \
-e "s/:$HGPORT2\\([^0-9]\\)/:HGPORT2\1/g" \
-e 's/http:\/\/[^/]*\//http:\/\/localhost\//'
Patrick Mezard
test-serve: replace copy/paste with shell function
r6300 cat hg.pid >> "$DAEMON_PIDS"
Dirkjan Ochtman
tests: easier error diagnostics for test-serve
r6461 echo % errors
cat errors.log
Patrick Mezard
test-serve: replace copy/paste with shell function
r6300 sleep 1
Brodie Rao
mail/hgweb: support service names for ports (issue2350)...
r12076 if [ "$KILLQUIETLY" = "Y" ]; then
kill `cat hg.pid` 2>/dev/null
else
kill `cat hg.pid`
fi
Patrick Mezard
test-serve: replace copy/paste with shell function
r6300 sleep 1
}
Joel Rosdahl
Add test reproducing a bug in "hg serve -v"
r4504 hg init test
cd test
Alexis S. L. Carvalho
serve: respect settings from .hg/hgrc...
r4835 echo '[web]' > .hg/hgrc
echo 'accesslog = access.log' >> .hg/hgrc
Thomas Arendsen Hein
test-serve: Show if port config and option are correctly used...
r10633 echo "port = $HGPORT1" >> .hg/hgrc
Alexis S. L. Carvalho
serve: respect settings from .hg/hgrc...
r4835
Joel Rosdahl
Add test reproducing a bug in "hg serve -v"
r4504 echo % Without -v
Dirkjan Ochtman
tests: easier error diagnostics for test-serve
r6461 hg serve -a localhost -p $HGPORT -d --pid-file=hg.pid -E errors.log
Alexis S. L. Carvalho
test-serve: let run-tests.py kill the daemons...
r4506 cat hg.pid >> "$DAEMON_PIDS"
Alexis S. L. Carvalho
serve: respect settings from .hg/hgrc...
r4835 if [ -f access.log ]; then
echo 'access log created - .hg/hgrc respected'
fi
Dirkjan Ochtman
tests: easier error diagnostics for test-serve
r6461 echo % errors
cat errors.log
Joel Rosdahl
Add test reproducing a bug in "hg serve -v"
r4504
echo % With -v
Patrick Mezard
test-serve: replace copy/paste with shell function
r6300 hgserve
Michele Cella
tests for hg serve prefix option
r5971
Thomas Arendsen Hein
test-serve: Show if port config and option are correctly used...
r10633 echo % With -v and -p HGPORT2
hgserve -p "$HGPORT2"
Mads Kiilerich
test-serve: use service that works on more platforms...
r12578 echo '% With -v and -p daytime (should fail because low port)'
Mads Kiilerich
test-serve: fix test for binding to low named port on solaris...
r12403 KILLQUIETLY=Y
Mads Kiilerich
test-serve: use service that works on more platforms...
r12578 hgserve -p daytime
Mads Kiilerich
test-serve: fix test for binding to low named port on solaris...
r12403 KILLQUIETLY=N
Brodie Rao
mail/hgweb: support service names for ports (issue2350)...
r12076
Michele Cella
tests for hg serve prefix option
r5971 echo % With --prefix foo
Patrick Mezard
test-serve: replace copy/paste with shell function
r6300 hgserve --prefix foo
Michele Cella
tests for hg serve prefix option
r5971
echo % With --prefix /foo
Patrick Mezard
test-serve: replace copy/paste with shell function
r6300 hgserve --prefix /foo
Michele Cella
tests for hg serve prefix option
r5971
echo % With --prefix foo/
Patrick Mezard
test-serve: replace copy/paste with shell function
r6300 hgserve --prefix foo/
Michele Cella
tests for hg serve prefix option
r5971
echo % With --prefix /foo/
Patrick Mezard
test-serve: replace copy/paste with shell function
r6300 hgserve --prefix /foo/