##// END OF EJS Templates
tests: handle Message-Id line wrapping in test-notify-changegroup.t...
Denis Laxalde -
r43698:9a43cef9 stable
parent child Browse files
Show More
@@ -39,6 +39,7 b' commit'
39 39 push
40 40
41 41 $ hg --traceback --cwd b push ../a 2>&1 |
42 > "$PYTHON" $TESTDIR/unwrap-message-id.py | \
42 43 > "$PYTHON" -c 'from __future__ import print_function ; import sys,re; print(re.sub("\n\t", " ", sys.stdin.read()), end="")'
43 44 pushing to ../a
44 45 searching for changes
@@ -93,6 +94,7 b' unbundle with unrelated source'
93 94 unbundle with correct source
94 95
95 96 $ hg --config notify.sources=unbundle --cwd a unbundle ../test.hg 2>&1 |
97 > "$PYTHON" $TESTDIR/unwrap-message-id.py | \
96 98 > "$PYTHON" -c 'from __future__ import print_function ; import sys,re; print(re.sub("\n\t", " ", sys.stdin.read()), end="")'
97 99 adding changesets
98 100 adding manifests
@@ -169,6 +171,7 b' merge as a different user'
169 171 push
170 172
171 173 $ hg --traceback --cwd b --config notify.fromauthor=True push ../a 2>&1 |
174 > "$PYTHON" $TESTDIR/unwrap-message-id.py | \
172 175 > "$PYTHON" -c 'from __future__ import print_function ; import sys,re; print(re.sub("\n\t", " ", sys.stdin.read()), end="")'
173 176 pushing to ../a
174 177 searching for changes
General Comments 0
You need to be logged in to leave comments. Login now