summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/inheritance
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-02-19 14:18:23 +0000
committerMarc Laukien <marc@zeroc.com>2004-02-19 14:18:23 +0000
commit588647427b50adf0d92f4b01b1e014d04cc3a767 (patch)
treedd0c3157d68f794cd76919fb8cb167710b265fb9 /cpp/test/Ice/inheritance
parentfix (diff)
downloadice-588647427b50adf0d92f4b01b1e014d04cc3a767.tar.bz2
ice-588647427b50adf0d92f4b01b1e014d04cc3a767.tar.xz
ice-588647427b50adf0d92f4b01b1e014d04cc3a767.zip
fix
Diffstat (limited to 'cpp/test/Ice/inheritance')
-rw-r--r--cpp/test/Ice/inheritance/AllTests.cpp2
-rw-r--r--cpp/test/Ice/inheritance/Collocated.cpp2
-rw-r--r--cpp/test/Ice/inheritance/Server.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Ice/inheritance/AllTests.cpp b/cpp/test/Ice/inheritance/AllTests.cpp
index bd31029b737..fffc0b24243 100644
--- a/cpp/test/Ice/inheritance/AllTests.cpp
+++ b/cpp/test/Ice/inheritance/AllTests.cpp
@@ -22,7 +22,7 @@ InitialPrx
allTests(const Ice::CommunicatorPtr& communicator)
{
cout << "testing stringToProxy... " << flush;
- string ref = "initial:default -p 12345 -t 2000";
+ string ref = "initial:default -p 12345 -t 10000";
Ice::ObjectPrx base = communicator->stringToProxy(ref);
test(base);
cout << "ok" << endl;
diff --git a/cpp/test/Ice/inheritance/Collocated.cpp b/cpp/test/Ice/inheritance/Collocated.cpp
index 7e486108f1b..27f8964a499 100644
--- a/cpp/test/Ice/inheritance/Collocated.cpp
+++ b/cpp/test/Ice/inheritance/Collocated.cpp
@@ -20,7 +20,7 @@ using namespace std;
int
run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
- communicator->getProperties()->setProperty("TestAdapter.Endpoints", "default -p 12345 -t 2000");
+ communicator->getProperties()->setProperty("TestAdapter.Endpoints", "default -p 12345 -t 10000");
Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter");
Ice::ObjectPtr object = new InitialI(adapter);
adapter->add(object, Ice::stringToIdentity("initial"));
diff --git a/cpp/test/Ice/inheritance/Server.cpp b/cpp/test/Ice/inheritance/Server.cpp
index 69d049acd90..d2558b8bc67 100644
--- a/cpp/test/Ice/inheritance/Server.cpp
+++ b/cpp/test/Ice/inheritance/Server.cpp
@@ -20,7 +20,7 @@ using namespace std;
int
run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
- communicator->getProperties()->setProperty("TestAdapter.Endpoints", "default -p 12345 -t 2000");
+ communicator->getProperties()->setProperty("TestAdapter.Endpoints", "default -p 12345 -t 10000");
Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter");
Ice::ObjectPtr object = new InitialI(adapter);
adapter->add(object, Ice::stringToIdentity("initial"));