summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-08-28 18:17:39 +0000
committeroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-08-28 18:17:39 +0000
commita01403b2d128bf5fd9f5c8ef06944cff13bfe88b (patch)
treef61ed19b68d42deee59ada11e32c9912c7be1650
parent4ce52d71d837ca3256eee958fe2976c15f666242 (diff)
downloadATCD-a01403b2d128bf5fd9f5c8ef06944cff13bfe88b.tar.gz
ChangeLogTag: Tue Aug 28 13:16:31 2001 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rwxr-xr-xbin/perltest2cpp.pl5
-rwxr-xr-xbin/vxworks_modify.pl1
5 files changed, 25 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 99b9f0d8d85..6efd82ec7e5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Aug 28 13:16:31 2001 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/vxworks_modify.pl:
+ * bin/perltest2cpp.pl:
+
+ Generated c++ files now pass the fuzz check.
+
Tue Aug 28 11:02:08 2001 Ossama Othman <ossama@uci.edu>
* bin/nightlybuilds/builds.lst:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 99b9f0d8d85..6efd82ec7e5 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Tue Aug 28 13:16:31 2001 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/vxworks_modify.pl:
+ * bin/perltest2cpp.pl:
+
+ Generated c++ files now pass the fuzz check.
+
Tue Aug 28 11:02:08 2001 Ossama Othman <ossama@uci.edu>
* bin/nightlybuilds/builds.lst:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 99b9f0d8d85..6efd82ec7e5 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Tue Aug 28 13:16:31 2001 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/vxworks_modify.pl:
+ * bin/perltest2cpp.pl:
+
+ Generated c++ files now pass the fuzz check.
+
Tue Aug 28 11:02:08 2001 Ossama Othman <ossama@uci.edu>
* bin/nightlybuilds/builds.lst:
diff --git a/bin/perltest2cpp.pl b/bin/perltest2cpp.pl
index 9e29424e843..3fd54780e3e 100755
--- a/bin/perltest2cpp.pl
+++ b/bin/perltest2cpp.pl
@@ -35,7 +35,7 @@ my($indsc) = 0;
my(%argsList) = ();
my($shortString) = 256;
my($unknownArgCount) = 20;
-my($defaultTimeout) = 30;
+my($defaultTimeout) = 60;
my($status) = 0;
my($lineCount) = 0;
my($needReadLine) = 1;
@@ -276,7 +276,8 @@ sub addParameterToCurrentSub {
sub getTop {
my($os) = "OSNAME";
- my($top) = "#include <ace/OS.h>\n" .
+ my($top) = "// \$Id\$\n\n" .
+ "#include <ace/OS.h>\n" .
"#include <ace/Get_Opt.h>\n" .
"#include <tao/debug.h>\n" .
"#include <tests/TestUtils/TestCombinedThreads.h>\n\n" .
diff --git a/bin/vxworks_modify.pl b/bin/vxworks_modify.pl
index 922a539d7de..20017047f16 100755
--- a/bin/vxworks_modify.pl
+++ b/bin/vxworks_modify.pl
@@ -539,6 +539,7 @@ if (open(IN, $ARGV[0])) {
last;
}
}
+ unshift(@lines, "// \$Id\$\n\n");
}
print OUT @lines;
close(OUT);