summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-05-07 17:31:02 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-05-07 17:31:02 +0000
commitf761e17ac46fc0212afa205cd5b10a3978ae1633 (patch)
tree5d5a305be128fa8841733cfd8a5951d142f3da02
parent658c32caa59e98b1342d1e60d5e33ceca9f1ad82 (diff)
downloadATCD-f761e17ac46fc0212afa205cd5b10a3978ae1633.tar.gz
ChangeLogTag: Tue May 7 12:27:16 2002 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a7
-rw-r--r--TAO/tests/Connection_Timeout/client.cpp4
2 files changed, 9 insertions, 2 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index fa818931de8..a2483abbcda 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Tue May 7 12:27:16 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Connection_Timeout/client.cpp (main): The bounds beyond
+ which a error is signalled is increased. This helps to reduce
+ noise in our daily builds. The bounds should not be increased
+ too much since we may miss errors doing that.
+
Mon May 6 09:12:15 2002 Ru Gunatilleke <ru@ociweb.com>
* TAO/tests/Connection_Timeout/client.dsp:
diff --git a/TAO/tests/Connection_Timeout/client.cpp b/TAO/tests/Connection_Timeout/client.cpp
index 5575a07b6d6..323caa40871 100644
--- a/TAO/tests/Connection_Timeout/client.cpp
+++ b/TAO/tests/Connection_Timeout/client.cpp
@@ -135,7 +135,7 @@ main (int argc, char *argv[])
// range would help.
#if (ACE_HAS_FLOATING_POINT == 1)
// The elapsed time is in usecs
- if (el.real_time > 130000)
+ if (el.real_time > 200000)
{
ACE_ERROR ((LM_ERROR,
"(%P|%t) ERROR: Too long to timeout \n"));
@@ -145,7 +145,7 @@ main (int argc, char *argv[])
#else
// The elapsed time is in secs
- if (el.real_time > 0.130)
+ if (el.real_time > 0.200)
{
ACE_ERROR ((LM_ERROR,
"(%P|%t)ERROR: Too long to timeout \n"));