This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta: Add the entry about text-mode source from 270ca14
[perl5.git] / t / op / filetest_stack_ok.t
index 91e31e0..3c212b1 100644 (file)
@@ -12,8 +12,35 @@ BEGIN {
 
 my @ops = split //, 'rwxoRWXOezsfdlpSbctugkTMBAC';
 
-plan( tests => @ops * 1 );
+plan( tests => @ops * 3 );
 
 for my $op (@ops) {
     ok( 1 == @{ [ eval "-$op 'TEST'" ] }, "-$op returns single value" );
+
+    my $count = 0;
+    my $t;
+    for my $m ("a", "b") {
+       if ($count == 0) {
+           $t = eval "-$op _" ? 0 : "foo";
+       }
+       elsif ($count == 1) {
+           is($m, "b", "-$op did not remove too many values from the stack");
+       }
+       $count++;
+    }
+
+    $count = 0;
+    for my $m ("c", "d") {
+       if ($count == 0) {
+           $t = eval "-$op -e \$^X" ? 0 : "bar";
+       }
+       elsif ($count == 1) {
+           local $TODO;
+           if ($op eq 'T' or $op eq 't' or $op eq 'B') {
+               $TODO = "[perl #77388] stacked file test does not work with -$op";
+           }
+           is($m, "d", "-$op -e \$^X did not remove too many values from the stack");
+       }
+       $count++;
+    }
 }