From 3aa1f0e17d98cbd2b72e72ad4a60835658440346 Mon Sep 17 00:00:00 2001 From: brunsch Date: Tue, 6 Mar 2001 03:22:39 +0000 Subject: ChangeLogTag:Mon Mar 5 19:20:45 2001 Fuzz Master D --- ChangeLog | 8 ++++++++ ChangeLogs/ChangeLog-02a | 8 ++++++++ ChangeLogs/ChangeLog-03a | 8 ++++++++ bin/fuzz.pl | 5 +++++ 4 files changed, 29 insertions(+) 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 + + * 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 * 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 + + * 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 * 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 + + * 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 * 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)"); } -- cgit v1.2.1