summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-06 03:22:39 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-06 03:22:39 +0000
commit3aa1f0e17d98cbd2b72e72ad4a60835658440346 (patch)
tree62a27909edfcd5aa1068695e475354c2d650543c
parent350e3f68f637b5745ee65da075aa83599068eae4 (diff)
downloadATCD-3aa1f0e17d98cbd2b72e72ad4a60835658440346.tar.gz
ChangeLogTag:Mon Mar 5 19:20:45 2001 Fuzz Master D <brunsch@uci.edu>
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-02a8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rwxr-xr-xbin/fuzz.pl5
4 files changed, 29 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 15db59b7620..f8aa5a39116 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Mon Mar 5 19:20:45 2001 Fuzz Master D <brunsch@uci.edu>
+
+ * bin/fuzz.pl:
+
+ As Ossama pointed out, the ACE_CHECK test was seeing
+ problems in the tao_idl files since it has uses of ACE_TRY_ENV
+ inside quotes. Made sure not to detect problems in this case.
+
Mon Mar 5 18:58:32 2001 Fuzz Master D <brunsch@uci.edu>
* bin/fuzz.pl:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 15db59b7620..f8aa5a39116 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Mon Mar 5 19:20:45 2001 Fuzz Master D <brunsch@uci.edu>
+
+ * bin/fuzz.pl:
+
+ As Ossama pointed out, the ACE_CHECK test was seeing
+ problems in the tao_idl files since it has uses of ACE_TRY_ENV
+ inside quotes. Made sure not to detect problems in this case.
+
Mon Mar 5 18:58:32 2001 Fuzz Master D <brunsch@uci.edu>
* bin/fuzz.pl:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 15db59b7620..f8aa5a39116 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,11 @@
+Mon Mar 5 19:20:45 2001 Fuzz Master D <brunsch@uci.edu>
+
+ * bin/fuzz.pl:
+
+ As Ossama pointed out, the ACE_CHECK test was seeing
+ problems in the tao_idl files since it has uses of ACE_TRY_ENV
+ inside quotes. Made sure not to detect problems in this case.
+
Mon Mar 5 18:58:32 2001 Fuzz Master D <brunsch@uci.edu>
* bin/fuzz.pl:
diff --git a/bin/fuzz.pl b/bin/fuzz.pl
index e07c24ac181..763e0f30d62 100755
--- a/bin/fuzz.pl
+++ b/bin/fuzz.pl
@@ -720,6 +720,11 @@ sub check_for_ace_check ()
$env_line = $line;
}
+ # ignore quoted ACE_TRY_ENV's
+ if (m/^[^\"]*\"[^\"]*ACE_TRY_ENV[^\"]*\"[^\"]*$/) {
+ $found_env = 0;
+ }
+
if (m/ACE_TRY_ENV.*ACE_TRY_ENV/) {
print_error ("Multiple ACE_TRY_ENV in $file ($line)");
}