summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-11-01 04:59:53 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-11-01 04:59:53 +0000
commitdad90b6d4518e3b93a352e7239164d6e36a44f69 (patch)
treef4aebd75f45437a4949c59649d5e4f71daea2acb
parent2c2def7a3671494c3a0d56237187f1eb61a2c5e2 (diff)
downloadATCD-dad90b6d4518e3b93a352e7239164d6e36a44f69.tar.gz
ChangeLogTag: Thu Nov 1 04:36:27 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
-rw-r--r--ACE/ChangeLog13
-rw-r--r--ACE/bin/PerlACE/Run_Test.pm2
2 files changed, 14 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index acbd694f252..ea105740fc2 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,16 @@
+Thu Nov 1 04:36:27 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
+
+ * bin/PerlACE/Run_Test.pm:
+
+ Change wait_interval_for_process_creation from 10 to 12 seconds
+ on NetBSD systems. Many TAO unit tests take at least 5 seconds
+ to initialize on NetBSD/i386 systems as they calibrate the high
+ resolution timer. Often this doesn't leave enough time to
+ complete initialization within the timeout.
+
+ Since there was a special case for LynxOS, I just extended it
+ for NetBSD.
+
Wed Oct 31 13:54:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/PerlACE/ProcessVX_Win32.pm:
diff --git a/ACE/bin/PerlACE/Run_Test.pm b/ACE/bin/PerlACE/Run_Test.pm
index 6cb34076d9d..b310d28048d 100644
--- a/ACE/bin/PerlACE/Run_Test.pm
+++ b/ACE/bin/PerlACE/Run_Test.pm
@@ -46,7 +46,7 @@ if (!defined $svcconf_ext) {
}
# Default timeout. NSCORBA needs more time for process start up.
-$wait_interval_for_process_creation = (($^O eq "lynxos") ? 12 : (($PerlACE::VxWorks_Test or $PerlACE::VxWorks_RTP_Test) ? 60 : 10));
+$wait_interval_for_process_creation = (($^O eq "lynxos" or $^O eq "netbsd") ? 12 : (($PerlACE::VxWorks_Test or $PerlACE::VxWorks_RTP_Test) ? 60 : 10));
if ($^O eq 'VMS') {
$wait_interval_for_process_creation *= 3;
}