diff options
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index ed491eee85c..b9cb702e717 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -145,6 +145,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 test/IceGrid/simple test on AIX + elif ex.errno == 0: + status = 0 else: raise |