diff options
author | Marc Laukien <marc@zeroc.com> | 2001-09-29 20:30:28 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-09-29 20:30:28 +0000 |
commit | 4fb513d64c69a9ed6afedb0d51a07ec4cf2a6c22 (patch) | |
tree | 97e41be6715f24e598ef3958f3cbe3141903e116 /cpp/test | |
parent | additional error checkpoints (diff) | |
download | ice-4fb513d64c69a9ed6afedb0d51a07ec4cf2a6c22.tar.bz2 ice-4fb513d64c69a9ed6afedb0d51a07ec4cf2a6c22.tar.xz ice-4fb513d64c69a9ed6afedb0d51a07ec4cf2a6c22.zip |
runtest fixes
Diffstat (limited to 'cpp/test')
-rwxr-xr-x | cpp/test/Ice/exceptions/run.py | 2 | ||||
-rwxr-xr-x | cpp/test/Ice/faultTolerance/run.py | 4 | ||||
-rwxr-xr-x | cpp/test/Ice/inheritance/run.py | 2 | ||||
-rwxr-xr-x | cpp/test/Ice/locationForward/run.py | 4 | ||||
-rwxr-xr-x | cpp/test/Ice/operations/run.py | 2 | ||||
-rwxr-xr-x | cpp/test/IcePack/simple/run.py | 4 |
6 files changed, 9 insertions, 9 deletions
diff --git a/cpp/test/Ice/exceptions/run.py b/cpp/test/Ice/exceptions/run.py index 2873635c052..e86eacd0b8d 100755 --- a/cpp/test/Ice/exceptions/run.py +++ b/cpp/test/Ice/exceptions/run.py @@ -23,4 +23,4 @@ import TestUtil name = "Ice/exceptions" TestUtil.clientServerTest(toplevel, name) TestUtil.collocatedTest(toplevel, name) -sys.exit(1) +sys.exit(0) diff --git a/cpp/test/Ice/faultTolerance/run.py b/cpp/test/Ice/faultTolerance/run.py index 2594e582419..54c8a21422e 100755 --- a/cpp/test/Ice/faultTolerance/run.py +++ b/cpp/test/Ice/faultTolerance/run.py @@ -44,7 +44,7 @@ output = clientPipe.readline() if not output: print "failed!" TestUtil.killServers() - sys.exit(0) + sys.exit(1) print "ok" print output, while 1: @@ -53,4 +53,4 @@ while 1: break; print output, -sys.exit(1) +sys.exit(0) diff --git a/cpp/test/Ice/inheritance/run.py b/cpp/test/Ice/inheritance/run.py index f687cef2beb..6796ea3b6cf 100755 --- a/cpp/test/Ice/inheritance/run.py +++ b/cpp/test/Ice/inheritance/run.py @@ -23,4 +23,4 @@ import TestUtil name = "Ice/inheritance" TestUtil.clientServerTest(toplevel, name) TestUtil.collocatedTest(toplevel, name) -sys.exit(1) +sys.exit(0) diff --git a/cpp/test/Ice/locationForward/run.py b/cpp/test/Ice/locationForward/run.py index 10c3f160611..a3dd4cc9336 100755 --- a/cpp/test/Ice/locationForward/run.py +++ b/cpp/test/Ice/locationForward/run.py @@ -47,7 +47,7 @@ output = clientPipe.readline() if not output: print "failed!" TestUtil.killServers() - sys.exit(0) + sys.exit(1) print "ok" print output, while 1: @@ -56,4 +56,4 @@ while 1: break; print output, -sys.exit(1) +sys.exit(0) diff --git a/cpp/test/Ice/operations/run.py b/cpp/test/Ice/operations/run.py index 4117811f191..eb0815fe726 100755 --- a/cpp/test/Ice/operations/run.py +++ b/cpp/test/Ice/operations/run.py @@ -23,4 +23,4 @@ import TestUtil name = "Ice/operations" TestUtil.clientServerTest(toplevel, name) TestUtil.collocatedTest(toplevel, name) -sys.exit(1) +sys.exit(0) diff --git a/cpp/test/IcePack/simple/run.py b/cpp/test/IcePack/simple/run.py index 806d7896c83..2534d776436 100755 --- a/cpp/test/IcePack/simple/run.py +++ b/cpp/test/IcePack/simple/run.py @@ -61,7 +61,7 @@ if os.name != "nt": if not output: print "failed!" TestUtil.killServers() - sys.exit(0) + sys.exit(1) print "ok" print output, while 1: @@ -77,4 +77,4 @@ icePackAdminPipe = os.popen(icePackAdmin + \ icePackAdminPipe.close() print "ok" -sys.exit(1) +sys.exit(0) |