diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-19 17:09:40 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-19 17:09:40 +0000 |
commit | 49a3baf241e28c42be6e48c15378ca2a445477cd (patch) | |
tree | 8e2194212d4e5a1527b8bf8281192e3756f25f13 /cppe/config/TestUtil.py | |
parent | Fixed pe=roperty setting (diff) | |
download | ice-49a3baf241e28c42be6e48c15378ca2a445477cd.tar.bz2 ice-49a3baf241e28c42be6e48c15378ca2a445477cd.tar.xz ice-49a3baf241e28c42be6e48c15378ca2a445477cd.zip |
Renamed properties back to Ice.
Diffstat (limited to 'cppe/config/TestUtil.py')
-rw-r--r-- | cppe/config/TestUtil.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppe/config/TestUtil.py b/cppe/config/TestUtil.py index cfc77aa8bb2..8a1b7a6ffde 100644 --- a/cppe/config/TestUtil.py +++ b/cppe/config/TestUtil.py @@ -185,14 +185,14 @@ serverProtocol = "" clientServerProtocol = "" if host != "": - defaultHost = " --IceE.Default.Host=" + host + defaultHost = " --Ice.Default.Host=" + host else: defaultHost = "" -commonClientOptions = " --IceE.NullHandleAbort --IceE.Warn.Connections" +commonClientOptions = " --Ice.NullHandleAbort --Ice.Warn.Connections" -commonServerOptions = " --IceE.PrintProcessId --IceE.PrintAdapterReady --IceE.NullHandleAbort" + \ - " --IceE.Warn.Connections" +commonServerOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.NullHandleAbort" + \ + " --Ice.Warn.Connections" clientOptions = clientProtocol + defaultHost + commonClientOptions serverOptions = serverProtocol + defaultHost + commonServerOptions |