summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2008-06-18 12:14:21 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2008-06-18 12:14:21 +0000
commit75245f142984412c8a02377a79fc503165ca224a (patch)
tree6140818a2b56af7ff45cdb16eef1f6f5c65c551a
parent253990144e0f2d971cd2310249d16bbd32150888 (diff)
downloadATCD-75245f142984412c8a02377a79fc503165ca224a.tar.gz
ChangeLogTag: Wed Jun 18 12:16:48 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ACE/ChangeLog6
-rw-r--r--ACE/bin/PerlACE/Run_Test.pm4
2 files changed, 10 insertions, 0 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 62681df0d2b..8b26a92f4d4 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,9 @@
+Wed Jun 18 12:16:48 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/PerlACE/Run_Test.pm:
+
+ Increase the process start wait time for QNX.
+
Wed Jun 18 10:43:20 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_linux_icc.GNU:
diff --git a/ACE/bin/PerlACE/Run_Test.pm b/ACE/bin/PerlACE/Run_Test.pm
index 2621dc39d8f..402a5111d69 100644
--- a/ACE/bin/PerlACE/Run_Test.pm
+++ b/ACE/bin/PerlACE/Run_Test.pm
@@ -52,6 +52,10 @@ $wait_interval_for_process_creation = (($PerlACE::VxWorks_Test or $PerlACE::VxWo
if ($^O eq 'VMS') {
$wait_interval_for_process_creation *= 3;
}
+elsif ($^O eq 'nto') {
+ ## QNX can be slow to start processes
+ $wait_interval_for_process_creation += 5;
+}
$wait_interval_for_process_shutdown = (($PerlACE::VxWorks_Test or $PerlACE::VxWorks_RTP_Test) ? 30 : 10);