diff options
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 1d2a9037951..8963d944227 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -230,8 +230,8 @@ class ReaderThread(Thread): while 1: line = self.pipe.readline() if not line: break - # supress object adapter ready messages. Under windows the eol isn't \n. - if line[len(line)-8:len(line)-2] != " ready": + # Suppress "adapter ready" messages. Under windows the eol isn't \n. + if not line.endswith(" ready\n") and not line.endswith(" ready\r\n"): print self.token + ": " + line, except IOError: pass |