]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
Skip two croaking tests on 5.6
authorVincent Pit <vince@profvince.com>
Mon, 29 Dec 2008 07:52:16 +0000 (08:52 +0100)
committerVincent Pit <vince@profvince.com>
Mon, 29 Dec 2008 07:52:16 +0000 (08:52 +0100)
t/29-localize-target.t

index 5b14904735c23ff2e51be92fe635b91bbd6b722c..3e54d0ee36e32421b86093a2336f077d436be36d 100644 (file)
@@ -61,7 +61,9 @@ undef *x;
  is $x, 8, 'localize " $x", 3, 0 [end]';
 }
 
+SKIP:
 {
+ skip 'Can\'t localize through a reference in 5.6' => 2 if $] < 5.008;
  no strict 'refs';
  local ${''} = 9;
  {
@@ -71,7 +73,9 @@ undef *x;
  is ${''}, 9, 'localize "$", 4, 0 [end]';
 }
 
+SKIP:
 {
+ skip 'Can\'t localize through a reference in 5.6' => 2 if $] < 5.008;
  no strict 'refs';
  local ${''} = 10;
  {