diff options
author | Marc Laukien <marc@zeroc.com> | 2002-07-09 18:56:40 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-07-09 18:56:40 +0000 |
commit | 554ea9ed6039d260cf4f9df077c5e80d5f51f4d1 (patch) | |
tree | 638a3b0fe2f4052401b562ab736436093e90358c | |
parent | Workaround for weird server crash on Linux. (diff) | |
download | ice-554ea9ed6039d260cf4f9df077c5e80d5f51f4d1.tar.bz2 ice-554ea9ed6039d260cf4f9df077c5e80d5f51f4d1.tar.xz ice-554ea9ed6039d260cf4f9df077c5e80d5f51f4d1.zip |
minor
-rwxr-xr-x | cpp/test/Ice/faultTolerance/run.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/Ice/faultTolerance/run.py b/cpp/test/Ice/faultTolerance/run.py index 0a7a53da8f6..d08b59702eb 100755 --- a/cpp/test/Ice/faultTolerance/run.py +++ b/cpp/test/Ice/faultTolerance/run.py @@ -60,9 +60,9 @@ if clientStatus: # # Exit with status 0 even though some servers failed to shutdown -# properly. There's a problem which is occuring on Linux bi-processor -# machines when ssl isn't enabled and which cause some servers to -# segfault of abort. It's not clear what the problem is and it's +# properly. There's a problem which is occuring on Linux dual-processor +# machines, when ssl isn't enabled, and which cause some servers to +# segfault and abort. It's not clear what the problem is, and it's # almost impossible to debug with the very poor information we get # from the core file (ulimit -c unlimited to enable core files on # Linux). @@ -70,8 +70,8 @@ if clientStatus: if serverStatus: TestUtil.killServers() if TestUtil.isWin32(): - sys.exit(0) - else: sys.exit(1) + else: + sys.exit(0) sys.exit(0) |