[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lmi-commits] [5445] Allow a file named 'md5sums'
From: |
Greg Chicares |
Subject: |
[lmi-commits] [5445] Allow a file named 'md5sums' |
Date: |
Mon, 30 Apr 2012 17:35:20 +0000 |
Revision: 5445
http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=5445
Author: chicares
Date: 2012-04-30 17:35:19 +0000 (Mon, 30 Apr 2012)
Log Message:
-----------
Allow a file named 'md5sums'
Modified Paths:
--------------
lmi/trunk/ChangeLog
lmi/trunk/test_coding_rules.cpp
Modified: lmi/trunk/ChangeLog
===================================================================
--- lmi/trunk/ChangeLog 2012-04-10 17:12:14 UTC (rev 5444)
+++ lmi/trunk/ChangeLog 2012-04-30 17:35:19 UTC (rev 5445)
@@ -29982,3 +29982,8 @@
cell.xsd
Improve documentation.
+20120430T1735Z <address@hidden> [573]
+
+ test_coding_rules.cpp
+Allow a file named 'md5sums'.
+
Modified: lmi/trunk/test_coding_rules.cpp
===================================================================
--- lmi/trunk/test_coding_rules.cpp 2012-04-10 17:12:14 UTC (rev 5444)
+++ lmi/trunk/test_coding_rules.cpp 2012-04-30 17:35:19 UTC (rev 5445)
@@ -228,6 +228,7 @@
: phyloanalyze("Log$") ? e_log
: phyloanalyze("GNUmakefile$") ? e_make
: phyloanalyze("^Makefile") ? e_make
+ : phyloanalyze("^md5sums$") ? e_md5
: phyloanalyze("^INSTALL$") ? e_synopsis
: phyloanalyze("^README") ? e_synopsis
: phyloanalyze("^eraseme") ? e_ephemeral
@@ -871,7 +872,10 @@
void enforce_taboos(file const& f)
{
- if(f.phyloanalyze("test_coding_rules"))
+ if
+ ( f.phyloanalyze("test_coding_rules")
+ || f.phyloanalyze("^md5sums$")
+ )
{
return;
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [lmi-commits] [5445] Allow a file named 'md5sums',
Greg Chicares <=