Actually make the strict checking work.

This commit is contained in:
zach%zachlipton.com 2001-09-03 22:11:43 +00:00
Родитель ac55bba9b4
Коммит 5b949c45ef
1 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -57,12 +57,18 @@ foreach $file (@testitems) {
next;
}
}
if ($filecontent !~ /use strict;/) {
}
foreach $file (@testitems) {
$file =~ s/\s.*$//; # nuke everything after the first space (#comment)
next if (!$file); # skip null entries
$filecontent = `cat $file`;
if ($filecontent !~ /use strict/) {
ok(0,"$file DOES NOT use strict");
} else {
ok(1,"$files uses strict");
ok(1,"$file uses strict");
}
}