summaryrefslogtreecommitdiff
path: root/TAO/tests/Client_Leaks
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-16 01:57:58 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-16 01:57:58 +0000
commitdeda15b1851ae042fa2196903459eddc377c5cbf (patch)
tree72d2f7d41acd1734e993ace288c0453d3f2d0b27 /TAO/tests/Client_Leaks
parent75df667529145a71f0752ede4fb0e7dfab93a6ce (diff)
downloadATCD-deda15b1851ae042fa2196903459eddc377c5cbf.tar.gz
ChangeLogTag:Thu Mar 15 17:56:58 2001 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/tests/Client_Leaks')
-rw-r--r--TAO/tests/Client_Leaks/Process_Factory.cpp4
-rw-r--r--TAO/tests/Client_Leaks/client.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Client_Leaks/Process_Factory.cpp b/TAO/tests/Client_Leaks/Process_Factory.cpp
index 2208561c3f6..be095477a4f 100644
--- a/TAO/tests/Client_Leaks/Process_Factory.cpp
+++ b/TAO/tests/Client_Leaks/Process_Factory.cpp
@@ -31,7 +31,7 @@ Process_Factory::create_new_process (CORBA::Environment &ACE_TRY_ENV)
ACE_Process_Manager::instance ()->spawn (options);
// Good chance to wait for older processes
- ACE_Time_Value interval (0, 20000);
+ ACE_Time_Value interval (0, 10000);
(void) ACE_Process_Manager::instance ()->wait (interval);
if (pid == -1)
@@ -42,7 +42,7 @@ Process_Factory::create_new_process (CORBA::Environment &ACE_TRY_ENV)
errno));
ACE_THROW_RETURN (Test::Spawn_Failed (), Test::Process::_nil ());
}
- for (int i = 0; i != 200; ++i)
+ for (int i = 0; i != 500; ++i)
{
if (ACE_OS::access ("child.ior", R_OK) == 0)
break;
diff --git a/TAO/tests/Client_Leaks/client.cpp b/TAO/tests/Client_Leaks/client.cpp
index 1ec39f2ddc7..24806645d06 100644
--- a/TAO/tests/Client_Leaks/client.cpp
+++ b/TAO/tests/Client_Leaks/client.cpp
@@ -6,7 +6,7 @@
ACE_RCSID(Crashed_Callback, client, "$Id$")
const char *ior = "file://test.ior";
-int iterations = 1500;
+int iterations = 1200;
int
parse_args (int argc, char *argv[])