summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorAdam Mitz <mitza-oci@users.noreply.github.com>2008-08-29 04:35:10 +0000
committerAdam Mitz <mitza-oci@users.noreply.github.com>2008-08-29 04:35:10 +0000
commit2d306cf5bfdaacd9ddaa937e57a3c8415149c734 (patch)
tree1aba312609f6f3662c14b2c57480aeda14cea767 /TAO
parent9cf1f798da1ea02d7d90bf2f47f9b959cb09aac8 (diff)
downloadATCD-2d306cf5bfdaacd9ddaa937e57a3c8415149c734.tar.gz
ChangeLogTag: Fri Aug 29 03:39:39 UTC 2008 Yan Dai <dai_y@ociweb.com>
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLog9
-rwxr-xr-xTAO/tests/Bug_1269_Regression/run_test.pl6
2 files changed, 12 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 8db205b6509..08bc6ee5a7c 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,12 @@
+Fri Aug 29 03:39:39 UTC 2008 Yan Dai <dai_y@ociweb.com>
+
+ * tests/Bug_1269_Regression/run_test.pl:
+
+ Increased client timeout to 60 seconds from 45 seconds to fix
+ timeout error. The client receives 100th request and sleep for
+ 15 seconds before abort. If server block for 15 seconds for
+ each client, then 45 seconds would not be enough.
+
Thu Aug 28 21:47:42 UTC 2008 Adam Mitz <mitza@ociweb.com>
* tao/Connection_Handler.h:
diff --git a/TAO/tests/Bug_1269_Regression/run_test.pl b/TAO/tests/Bug_1269_Regression/run_test.pl
index 6118ec2af8c..4b4c9b6bc9b 100755
--- a/TAO/tests/Bug_1269_Regression/run_test.pl
+++ b/TAO/tests/Bug_1269_Regression/run_test.pl
@@ -47,9 +47,9 @@ while($elapsed < $max_running_time) {
# ... wait for the clients to die unless they did not startup,
# ignore errors because they intentionally crash themselves!
- $CL3->WaitKill(45) unless $client3 < 0;
- $CL2->WaitKill(45) unless $client2 < 0;
- $CL1->WaitKill(45) unless $client1 < 0;
+ $CL3->WaitKill(60) unless $client3 < 0;
+ $CL2->WaitKill(60) unless $client2 < 0;
+ $CL1->WaitKill(60) unless $client1 < 0;
$elapsed = time() - $start_time;
}