summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
authormsmit <msmit@remedy.nl>2013-03-14 10:10:14 +0000
committermsmit <msmit@remedy.nl>2013-03-14 10:10:14 +0000
commit61a3162d9cc707d87c8c0fb569a1508ab328c4c3 (patch)
treeae429dcaf425c21e53d2e4a303602e3c51e189b8 /ACE
parent0e6d644b6ea61d11e69f5b595d33f52bbb9bcfcb (diff)
downloadATCD-61a3162d9cc707d87c8c0fb569a1508ab328c4c3.tar.gz
Thu Mar 14 10:08:55 UTC 2013 Marcel Smit <msmit@remedy.nl>
* bin/fuzz.pl: Checking the last part of the given @file entry, instead of the filename only.
Diffstat (limited to 'ACE')
-rw-r--r--ACE/ChangeLog6
-rwxr-xr-xACE/bin/fuzz.pl8
2 files changed, 9 insertions, 5 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index f618c5b77d6..a810642c098 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,9 @@
+Thu Mar 14 10:08:55 UTC 2013 Marcel Smit <msmit@remedy.nl>
+
+ * bin/fuzz.pl:
+ Checking the last part of the given @file entry, instead of
+ the filename only.
+
Thu Mar 14 08:38:57 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* ChangeLog:
diff --git a/ACE/bin/fuzz.pl b/ACE/bin/fuzz.pl
index f916e9263c0..17caee09361 100755
--- a/ACE/bin/fuzz.pl
+++ b/ACE/bin/fuzz.pl
@@ -1511,11 +1511,9 @@ sub check_for_mismatched_filename ()
while (<FILE>) {
if (m/\@file\s*([^\s]+)/){
# $file includes complete path, $1 is the name after
- # @file. We must strip the complete path from $file.
- # we do that using the basename function from
- # File::BaseName
- $filename = basename($file,"");
- if (!($filename eq $1)){
+ # @file. We must check whether the last part of $file
+ # is equal to $1
+ if ($file !~ /$1$/) {
print_error ("$file:$.: \@file mismatch in $file, found $1");
}
}