summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorjake%acutex.net <>2002-01-05 01:04:09 +0100
committerjake%acutex.net <>2002-01-05 01:04:09 +0100
commitde2a3a6b490da721a44e11c0ca4e91286988e794 (patch)
tree184f8090242a05b2fe2ca1bf55b94d032f744a56 /t
parent668ec7dae535ce543f13ef5a36830da7421e1e68 (diff)
downloadbugzilla-de2a3a6b490da721a44e11c0ca4e91286988e794.tar.gz
bugzilla-de2a3a6b490da721a44e11c0ca4e91286988e794.tar.xz
Bug 112914 - This test was relying on the existance of the unix "cat" command instead of using perl's standard open() function. This caused a test failed when running the tinderbox script on win32.
Diffstat (limited to 't')
-rw-r--r--t/002goodperl.t21
1 files changed, 13 insertions, 8 deletions
diff --git a/t/002goodperl.t b/t/002goodperl.t
index 9047e09ff..e9ade3900 100644
--- a/t/002goodperl.t
+++ b/t/002goodperl.t
@@ -18,6 +18,7 @@
# Rights Reserved.
#
# Contributor(s): Zach Lipton <zach@zachlipton.com>
+# Jacob Steenhagen <jake@acutex.net>
#
# Alternatively, the contents of this file may be used under the
# terms of the GNU General Public License Version 2 or later (the
@@ -48,16 +49,18 @@ my @testitems = @Support::Files::testitems; # get the files to test.
foreach my $file (@testitems) {
$file =~ s/\s.*$//; # nuke everything after the first space (#comment)
next if (!$file); # skip null entries
- my $filecontent = `cat $file`;
- if ($filecontent !~ /\/usr\/bonsaitools\/bin\/perl/) {
+ open (FILE, $file);
+ my @file = <FILE>;
+ close (FILE);
+ if ($file[0] !~ /\/usr\/bonsaitools\/bin\/perl/) {
ok(1,"$file does not have a shebang");
next;
} else {
- if ($filecontent =~ m#/usr/bonsaitools/bin/perl -w#) {
+ if ($file[0] =~ m#/usr/bonsaitools/bin/perl -w#) {
ok(1,"$file uses -w");
next;
} else {
- ok(0,"$file is MISSING -w");
+ ok(0,"$file is MISSING -w --WARNING");
next;
}
}
@@ -65,11 +68,13 @@ foreach my $file (@testitems) {
foreach my $file (@testitems) {
$file =~ s/\s.*$//; # nuke everything after the first space (#comment)
next if (!$file); # skip null entries
- my $filecontent = `cat $file`;
- if ($filecontent !~ /use strict/) {
- ok(0,"$file DOES NOT use strict");
- } else {
+ open (FILE, $file);
+ my @file = <FILE>;
+ close (FILE);
+ if (grep /^\s*use strict/, @file) {
ok(1,"$file uses strict");
+ } else {
+ ok(0,"$file DOES NOT use strict --WARNING");
}
}