Skip to content
Snippets Groups Projects
Commit 8a452efc authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

test-http-bad-server: move on test from bytes-count to pattern

This specific test case is now using the new "close when a pattern is seen"
approach compared to the more fragile "that many bytes were sent" approach.

Since such change are still a bit noisy, we split each change in there own
changesets.

Differential Revision: https://phab.mercurial-scm.org/D12055
parent 38028f3e
No related branches found
No related tags found
No related merge requests found
......@@ -563,7 +563,9 @@
Server stops before it sends transfer encoding
----------------------------------------------
$ hg serve --config badserver.close-after-send-bytes=954 -p $HGPORT -d --pid-file=hg.pid -E error.log
$ hg serve \
> --config badserver.close-after-send-patterns="Transfer-Encoding: chunke" \
> -p $HGPORT -d --pid-file=hg.pid -E error.log
$ cat hg.pid > $DAEMON_PIDS
$ hg clone http://localhost:$HGPORT/ clone
......@@ -584,7 +586,7 @@
#else
$ "$PYTHON" $TESTDIR/filtertraceback.py < error.log | tail -7
write(41 from 41) -> (25) Content-Type: application/mercurial-0.2\r\n
write(41) -> Content-Type: application/mercurial-0.2\r\n
write(25 from 28) -> (0) Transfer-Encoding: chunke
write limit reached; closing socket
$LOCALIP - - [$ERRDATE$] Exception happened during processing request '/?cmd=getbundle': (glob)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment