##// 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 push
39 push
40
40
41 $ hg --traceback --cwd b push ../a 2>&1 |
41 $ hg --traceback --cwd b push ../a 2>&1 |
42 > "$PYTHON" $TESTDIR/unwrap-message-id.py | \
42 > "$PYTHON" -c 'from __future__ import print_function ; import sys,re; print(re.sub("\n\t", " ", sys.stdin.read()), end="")'
43 > "$PYTHON" -c 'from __future__ import print_function ; import sys,re; print(re.sub("\n\t", " ", sys.stdin.read()), end="")'
43 pushing to ../a
44 pushing to ../a
44 searching for changes
45 searching for changes
@@ -93,6 +94,7 b' unbundle with unrelated source'
93 unbundle with correct source
94 unbundle with correct source
94
95
95 $ hg --config notify.sources=unbundle --cwd a unbundle ../test.hg 2>&1 |
96 $ hg --config notify.sources=unbundle --cwd a unbundle ../test.hg 2>&1 |
97 > "$PYTHON" $TESTDIR/unwrap-message-id.py | \
96 > "$PYTHON" -c 'from __future__ import print_function ; import sys,re; print(re.sub("\n\t", " ", sys.stdin.read()), end="")'
98 > "$PYTHON" -c 'from __future__ import print_function ; import sys,re; print(re.sub("\n\t", " ", sys.stdin.read()), end="")'
97 adding changesets
99 adding changesets
98 adding manifests
100 adding manifests
@@ -169,6 +171,7 b' merge as a different user'
169 push
171 push
170
172
171 $ hg --traceback --cwd b --config notify.fromauthor=True push ../a 2>&1 |
173 $ hg --traceback --cwd b --config notify.fromauthor=True push ../a 2>&1 |
174 > "$PYTHON" $TESTDIR/unwrap-message-id.py | \
172 > "$PYTHON" -c 'from __future__ import print_function ; import sys,re; print(re.sub("\n\t", " ", sys.stdin.read()), end="")'
175 > "$PYTHON" -c 'from __future__ import print_function ; import sys,re; print(re.sub("\n\t", " ", sys.stdin.read()), end="")'
173 pushing to ../a
176 pushing to ../a
174 searching for changes
177 searching for changes
General Comments 0
You need to be logged in to leave comments. Login now