Merge pull request #1263 from ZyX-I/rc-remove-read-failed

When using `rc` remove “read() failed” messages
This commit is contained in:
Nikolai Aleksandrovich Pavlov 2015-01-09 18:37:08 +03:00
commit d562844a1a
2 changed files with 8 additions and 0 deletions

View File

@ -98,4 +98,7 @@ with codecs.open(fname, 'r', encoding='utf-8') as R:
line = IPYPY_DEANSI_RE.subn('', line)[0]
if line == '\n' and not was_empty:
line = ''
elif shell == 'rc':
if line == 'read() failed: Connection reset by peer\n':
line = ''
W.write(line)

View File

@ -181,8 +181,13 @@ do_run_test() {
}
run_test() {
TEST_TYPE="$1"
TEST_CLIENT="$2"
SH="$3"
local attempts=3
while test $attempts -gt 0 ; do
rm -f tests/shell/${SH}.${TEST_TYPE}.${TEST_CLIENT}.log
rm -f tests/shell/${SH}.${TEST_TYPE}.${TEST_CLIENT}.full.log
do_run_test "$@" && return 0
attempts=$(( attempts - 1 ))
done