changeset 223:c9262aa2918a

Fixed test.
author Steve Kemp <steve@steve.org.uk>
date Wed, 16 Apr 2008 19:34:44 +0100
parents fdbbc1bb5d7c
children 9780818e4f2f
files tests/perl-syntax.t
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tests/perl-syntax.t	Wed Apr 16 19:31:23 2008 +0100
+++ b/tests/perl-syntax.t	Wed Apr 16 19:34:44 2008 +0100
@@ -37,8 +37,9 @@
     # Or makefiles
     return if ( $file =~ /Makefile/ );
 
-    # `modules.sh` is a false positive.
-    return if ( $file =~ /modules.sh$/ );
+    # False positives
+    return if ( ( $file =~ /modules.sh$/ ) ||
+                ( $file =~ /html-validator.t/ ) );
 
     # See if it is a perl file.
     my $isPerl = 0;