diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 7 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 7 | ||||
-rwxr-xr-x | bin/perltest2cpp.pl | 5 | ||||
-rwxr-xr-x | bin/vxworks_modify.pl | 1 |
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); |