This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldiag.pod: Document overload’s invalid arg warning
[perl5.git] / lib / strict.t
index 80076fc..e067793 100644 (file)
-#!./perl 
+#!./perl
 
-BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
-    $ENV{PERL5LIB} = '../lib';
-}
+chdir 't' if -d 't';
+@INC = '../lib';
 
-$| = 1;
+our $local_tests = 4;
+require "../t/lib/common.pl";
 
-my $Is_VMS = $^O eq 'VMS';
-my $Is_MSWin32 = $^O eq 'MSWin32';
-my $Is_NetWare = $^O eq 'NetWare';
-my $tmpfile = "tmp0000";
-my $i = 0 ;
-1 while -e ++$tmpfile;
-END { if ($tmpfile) { 1 while unlink $tmpfile; } }
+eval qq(use strict 'garbage');
+like($@, qr/^Unknown 'strict' tag\(s\) 'garbage'/);
 
-my @prgs = () ;
+eval qq(no strict 'garbage');
+like($@, qr/^Unknown 'strict' tag\(s\) 'garbage'/);
 
-foreach (sort glob($^O eq 'MacOS' ? ":lib:strict:*" : "lib/strict/*")) {
+eval qq(use strict qw(foo bar));
+like($@, qr/^Unknown 'strict' tag\(s\) 'foo bar'/);
 
-    next if -d || /(~|\.orig|,v)$/;
-
-    open F, "<$_" or die "Cannot open $_: $!\n" ;
-    while (<F>) {
-       last if /^__END__/ ;
-    }
-
-    {
-        local $/ = undef;
-        @prgs = (@prgs, split "\n########\n", <F>) ;
-    }
-    close F or die "Could not close: $!" ;
-}
-
-undef $/;
-
-print "1..", scalar @prgs, "\n";
-for (@prgs){
-    my $switch = "";
-    my @temps = () ;
-    if (s/^\s*-\w+//){
-        $switch = $&;
-    }
-    my($prog,$expected) = split(/\nEXPECT\n/, $_);
-    if ( $prog =~ /--FILE--/) {
-        my(@files) = split(/\n--FILE--\s*([^\s\n]*)\s*\n/, $prog) ;
-       shift @files ;
-       die "Internal error test $i didn't split into pairs, got " . 
-               scalar(@files) . "[" . join("%%%%", @files) ."]\n"
-           if @files % 2 ;
-       while (@files > 2) {
-           my $filename = shift @files ;
-           my $code = shift @files ;
-           $code =~ s|\./abc|:abc|g if $^O eq 'MacOS';
-           push @temps, $filename ;
-           open F, ">$filename" or die "Cannot open $filename: $!\n" ;
-           print F $code ;
-           close F or die "Could not close: $!" ;
-       }
-       shift @files ;
-       $prog = shift @files ;
-       $prog =~ s|\./abc|:abc|g if $^O eq 'MacOS';
-    }
-    open TEST, ">$tmpfile" or die "Could not open: $!";
-    print TEST $prog,"\n";
-    close TEST or die "Could not close: $!";
-    my $results = $Is_MSWin32 ?
-                     `.\\perl -I../lib $switch $tmpfile 2>&1` :
-                  $^O eq 'NetWare' ?
-                     `perl -I../lib $switch $tmpfile 2>&1` :
-                  $^O eq 'MacOS' ?
-                     `$^X -I::lib -MMac::err=unix $switch $tmpfile` :
-                  `./perl $switch $tmpfile 2>&1`;
-    my $status = $?;
-    $results =~ s/\n+$//;
-    # allow expected output to be written as if $prog is on STDIN
-    $results =~ s/tmp\d+/-/g;
-    $results =~ s/\n%[A-Z]+-[SIWEF]-.*$// if $Is_VMS;  # clip off DCL status msg
-    $expected =~ s/\n+$//;
-    $expected =~ s|(\./)?abc\.pm|:abc.pm|g if $^O eq 'MacOS';
-    $expected =~ s|./abc|:abc|g if $^O eq 'MacOS';
-    my $prefix = ($results =~ s/^PREFIX\n//) ;
-    if ( $results =~ s/^SKIPPED\n//) {
-       print "$results\n" ;
-    }
-    elsif (($prefix and $results !~ /^\Q$expected/) or
-          (!$prefix and $results ne $expected)){
-        print STDERR "PROG: $switch\n$prog\n";
-        print STDERR "EXPECTED:\n$expected\n";
-        print STDERR "GOT:\n$results\n";
-        print "not ";
-    }
-    print "ok ", ++$i, "\n";
-    foreach (@temps) 
-       { unlink $_ if $_ } 
-}
+eval qq(no strict qw(foo bar));
+like($@, qr/^Unknown 'strict' tag\(s\) 'foo bar'/);