diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-06-09 15:13:50 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-06-09 15:13:50 +0000 |
commit | af4ea751f9094449658638ce0748662f8fb101b2 (patch) | |
tree | c202ff5b9b85450b556bfb75d1df467efb0304b9 /cs/config/TestUtil.py | |
parent | added test for RFC2253.unescape fix. (diff) | |
download | ice-af4ea751f9094449658638ce0748662f8fb101b2.tar.bz2 ice-af4ea751f9094449658638ce0748662f8fb101b2.tar.xz ice-af4ea751f9094449658638ce0748662f8fb101b2.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=1051
Diffstat (limited to 'cs/config/TestUtil.py')
-rw-r--r-- | cs/config/TestUtil.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cs/config/TestUtil.py b/cs/config/TestUtil.py index 4cac9366eee..16b0819d0e5 100644 --- a/cs/config/TestUtil.py +++ b/cs/config/TestUtil.py @@ -75,6 +75,9 @@ def closePipe(pipe): # TODO: There's a waitpid problem on CentOS, so we have to ignore ECHILD. if ex.errno == errno.ECHILD: status = 0 + # This happens with the C# fault tolerance test. Ignore this error. + elif ex.errno == 0: + status = 0 else: raise @@ -95,6 +98,7 @@ class ReaderThread(Thread): if not line.endswith(" ready\n") and not line.endswith(" ready\r\n"): print line, except IOError: + print "IOError" pass self.status = closePipe(self.pipe) |