diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-06-20 14:26:05 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-06-20 14:26:05 +0000 |
commit | 52cf538fff104699218411cd1d89a71c050038bd (patch) | |
tree | c348e1bf1f41d1d8ddf1295dc1feee2a17d9f95f /cpp/config/TestUtil.py | |
parent | some updates for making components more generic across targets and cleanup (diff) | |
download | ice-52cf538fff104699218411cd1d89a71c050038bd.tar.bz2 ice-52cf538fff104699218411cd1d89a71c050038bd.tar.xz ice-52cf538fff104699218411cd1d89a71c050038bd.zip |
Fix for bug 1093
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 |