diff tests/perl-syntax.t @ 223:c9262aa2918a

Fixed test.
author Steve Kemp <steve@steve.org.uk>
date Wed, 16 Apr 2008 19:34:44 +0100
parents 12a343d708a1
children
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;