Change 27646 by [EMAIL PROTECTED] on 2006/03/31 16:19:38

        Test that entries in %^H are actually independant.

Affected files ...

... //depot/perl/t/op/caller.t#7 edit

Differences ...

==== //depot/perl/t/op/caller.t#7 (text) ====
Index: perl/t/op/caller.t
--- perl/t/op/caller.t#6~27643~ 2006-03-31 05:45:57.000000000 -0800
+++ perl/t/op/caller.t  2006-03-31 08:19:38.000000000 -0800
@@ -5,7 +5,7 @@
     chdir 't' if -d 't';
     @INC = '../lib';
     require './test.pl';
-    plan( tests => 48 );
+    plan( tests => 56 );
 }
 
 my @c;
@@ -116,21 +116,32 @@
 is( $i, 11, 'do not skip over eval even if $^P had been on at some point' );
 is( eval 'pb()', 'main::pb', 'actually return the right function name even if 
$^P had been on at some point' );
 
-# caller can now return the compile time state of %^H
+print "# caller can now return the compile time state of %^H\n";
+
+sub get_hash {
+    my $level = shift;
+    my @results = caller($level||0);
+    $results[10];
+}
+
 sub get_dooot {
     my $level = shift;
     my @results = caller($level||0);
     $results[10]->{dooot};
 }
-sub get_hash {
+
+sub get_thikoosh {
     my $level = shift;
     my @results = caller($level||0);
-    $results[10];
+    $results[10]->{thikoosh};
 }
+
 sub dooot {
     is(get_dooot(), undef);
+    is(get_thikoosh(), undef);
     my $hash = get_hash();
     ok(!exists $hash->{dooot});
+    ok(!exists $hash->{thikoosh});
     is(get_dooot(1), 54);
     BEGIN {
        $^H{dooot} = 42;
@@ -155,10 +166,13 @@
 }
 {
     is(get_dooot(), undef);
+    is(get_thikoosh(), undef);
     BEGIN {
        $^H{dooot} = 1;
+       $^H{thikoosh} = "SKREECH";
     }
-       is(get_dooot(), 1);
+    is(get_dooot(), 1);
+    is(get_thikoosh(), "SKREECH");
 
     BEGIN {
        $^H{dooot} = 42;
@@ -169,6 +183,7 @@
                $^H{dooot} = 6 * 9;
            }
            is(get_dooot(), 54);
+           is(get_thikoosh(), "SKREECH");
            {
                BEGIN {
                    delete $^H{dooot};
@@ -176,10 +191,13 @@
                is(get_dooot(), undef);
                my $hash = get_hash();
                ok(!exists $hash->{dooot});
+               is(get_thikoosh(), "SKREECH");
            }
            dooot();
        }
        is(get_dooot(), 6 * 7);
+       is(get_thikoosh(), "SKREECH");
     }
     is(get_dooot(), 6 * 7);
+    is(get_thikoosh(), "SKREECH");
 }
End of Patch.

Reply via email to