]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
Also test arrays without aelemfast optimization
authorVincent Pit <vince@profvince.com>
Thu, 18 Jun 2009 22:47:45 +0000 (00:47 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 18 Jun 2009 22:47:45 +0000 (00:47 +0200)
MANIFEST
samples/hash2array.pl
t/30-array.t [new file with mode: 0644]
t/lib/autovivification/TestCases.pm

index cd1e5672c136b823d1249d624abadd40512224b3..979aa8803c502fa481ee57021eb6cfd3a3d07964 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -10,6 +10,7 @@ samples/hash2array.pl
 t/00-load.t
 t/20-hash.t
 t/21-hash-specific.t
+t/30-array.t
 t/31-array-fast.t
 t/40-scope.t
 t/91-pod.t
index 863ba885721a1de1c42bc9929d4b51426a34f76b..8b3419d1139fbdbb68f742470b85125bbc8aec40 100644 (file)
@@ -6,8 +6,9 @@ use warnings;
 use Fatal qw/open/;
 use Text::Balanced qw/extract_bracketed/;
 
-open my $hash_t,  '<', 't/20-hash.t';
-open my $array_t, '>', 't/21-array.t';
+open my $hash_t,       '<', 't/20-hash.t';
+open my $array_t,      '>', 't/30-array.t';
+open my $array_fast_t, '>', 't/31-array-fast.t';
 
 sub num { ord($_[0]) - ord('a') }
 
@@ -35,23 +36,28 @@ my $in_data;
 while (<$hash_t>) {
  if (/^__DATA__$/) {
   $in_data = 1;
-  print $array_t $_;
+  print $array_t      $_;
+  print $array_fast_t $_;
  } elsif (!$in_data) {
   s{'%'}{'\@'};
-  print $array_t $_;
+  print $array_t      $_;
+  print $array_fast_t $_;
  } else {
-  s!(\ba\b)?(\s*)HASH\b!($1 ? 'an': '') . "$2ARRAY"!eg;
-  s!->{([a-z])}!'->[' . num($1) . ']'!eg;
-  s!%(\{?)\$!\@$1\$!g;
-  my $buf;
-  my $suffix = $_;
-  my ($bracket, $prefix);
-  while (do { ($bracket, $suffix, $prefix) = extract($suffix); $bracket }) {
-   $buf .= $prefix . dump_array(hash2array(eval $bracket));
+  for my $file ([ 1, $array_t ], [ 0, $array_fast_t ]) {
+   local $_ = $_;
+   s!(\ba\b)?(\s*)HASH\b!($1 ? 'an': '') . "$2ARRAY"!eg;
+   s!->{([a-z])}!my $n = num($1); '->[' . ($file->[0] ? "\$N[$n]" : $n) .']'!eg;
+   s!%(\{?)\$!\@$1\$!g;
+   my $buf;
+   my $suffix = $_;
+   my ($bracket, $prefix);
+   while (do { ($bracket, $suffix, $prefix) = extract($suffix); $bracket }) {
+    $buf .= $prefix . dump_array(hash2array(eval $bracket));
+   }
+   $buf .= $suffix;
+   $buf =~ s/\s+/ /g;
+   $buf =~ s/\s+$//;
+   print { $file->[1] } "$buf\n";
   }
-  $buf .= $suffix;
-  $buf =~ s/\s+/ /g;
-  $buf =~ s/\s+$//;
-  print $array_t "$buf\n";
  }
 }
diff --git a/t/30-array.t b/t/30-array.t
new file mode 100644 (file)
index 0000000..c6be2aa
--- /dev/null
@@ -0,0 +1,341 @@
+#!perl -T
+
+use strict;
+use warnings;
+
+use Test::More tests => 6 * 3 * 274;
+
+use lib 't/lib';
+use autovivification::TestCases;
+
+while (<DATA>) {
+ 1 while chomp;
+ next unless /#/;
+ testcase_ok($_, '@');
+}
+
+__DATA__
+
+--- fetch ---
+
+$x # $x->[$N[0]] # '', undef, [ ]
+$x # $x->[$N[0]] # '', undef, undef #
+$x # $x->[$N[0]] # '', undef, undef # +fetch
+$x # $x->[$N[0]] # '', undef, [ ] # +exists
+$x # $x->[$N[0]] # '', undef, [ ] # +delete
+$x # $x->[$N[0]] # '', undef, [ ] # +store
+
+$x # $x->[$N[0]] # '', undef, [ ] # -fetch
+$x # $x->[$N[0]] # '', undef, [ ] # +fetch -fetch
+$x # $x->[$N[0]] # '', undef, undef # -fetch +fetch
+$x # $x->[$N[0]] # '', undef, undef # +fetch -exists
+
+$x # $x->[$N[0]] # qr/^Reference vivification forbidden/, undef, undef # +strict +fetch
+$x # $x->[$N[0]] # '', undef, [ ] # +strict +exists
+$x # $x->[$N[0]] # '', undef, [ ] # +strict +delete
+$x # $x->[$N[0]] # '', undef, [ ] # +strict +store
+
+$x # $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ]
+$x # $x->[$N[0]]->[$N[1]] # '', undef, undef #
+$x # $x->[$N[0]]->[$N[1]] # '', undef, undef # +fetch
+$x # $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +exists
+$x # $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +delete
+$x # $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +store
+
+$x # $x->[$N[0]]->[$N[1]] # qr/^Reference vivification forbidden/, undef, undef # +strict +fetch
+$x # $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +strict +exists
+$x # $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +strict +delete
+$x # $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +strict +store
+
+$x->[$N[0]] = 1 # $x->[$N[0]] # '', 1, [ 1 ] # +fetch
+$x->[$N[0]] = 1 # $x->[$N[1]] # '', undef, [ 1 ] # +fetch
+$x->[$N[0]] = 1 # $x->[$N[0]] # '', 1, [ 1 ] # +exists
+$x->[$N[0]] = 1 # $x->[$N[1]] # '', undef, [ 1 ] # +exists
+$x->[$N[0]] = 1 # $x->[$N[0]] # '', 1, [ 1 ] # +delete
+$x->[$N[0]] = 1 # $x->[$N[1]] # '', undef, [ 1 ] # +delete
+$x->[$N[0]] = 1 # $x->[$N[0]] # '', 1, [ 1 ] # +store
+$x->[$N[0]] = 1 # $x->[$N[1]] # '', undef, [ 1 ] # +store
+
+$x->[$N[0]] = 1 # $x->[$N[0]] # '', 1, [ 1 ] # +strict +fetch
+$x->[$N[0]] = 1 # $x->[$N[1]] # '', undef, [ 1 ] # +strict +fetch
+$x->[$N[0]] = 1 # $x->[$N[0]] # '', 1, [ 1 ] # +strict +exists
+$x->[$N[0]] = 1 # $x->[$N[1]] # '', undef, [ 1 ] # +strict +exists
+$x->[$N[0]] = 1 # $x->[$N[0]] # '', 1, [ 1 ] # +strict +delete
+$x->[$N[0]] = 1 # $x->[$N[1]] # '', undef, [ 1 ] # +strict +delete
+$x->[$N[0]] = 1 # $x->[$N[0]] # '', 1, [ 1 ] # +strict +store
+$x->[$N[0]] = 1 # $x->[$N[1]] # '', undef, [ 1 ] # +strict +store
+
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ] # +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +store
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +store
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ] # +store
+
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] # qr/^Reference vivification forbidden/, undef, [ [ undef, 1 ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +strict +store
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +strict +store
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ] # +strict +store
+
+--- aliasing ---
+
+$x # 1 for $x->[$N[0]]; () # '', undef, [ undef ]
+$x # 1 for $x->[$N[0]]; () # '', undef, [ undef ] #
+$x # 1 for $x->[$N[0]]; () # '', undef, [ undef ] # +fetch
+$x # 1 for $x->[$N[0]]; () # '', undef, [ undef ] # +exists
+$x # 1 for $x->[$N[0]]; () # '', undef, [ undef ] # +delete
+$x # 1 for $x->[$N[0]]; () # qr/^Can't vivify reference/, undef, undef # +store
+
+$x # $_ = 1 for $x->[$N[0]]; () # '', undef, [ 1 ]
+$x # $_ = 1 for $x->[$N[0]]; () # '', undef, [ 1 ] #
+$x # $_ = 1 for $x->[$N[0]]; () # '', undef, [ 1 ] # +fetch
+$x # $_ = 1 for $x->[$N[0]]; () # '', undef, [ 1 ] # +exists
+$x # $_ = 1 for $x->[$N[0]]; () # '', undef, [ 1 ] # +delete
+$x # $_ = 1 for $x->[$N[0]]; () # qr/^Can't vivify reference/, undef, undef # +store
+
+$x->[$N[0]] = 1 # 1 for $x->[$N[0]]; () # '', undef, [ 1 ] # +fetch
+$x->[$N[0]] = 1 # 1 for $x->[$N[1]]; () # '', undef, [ 1, undef ] # +fetch
+$x->[$N[0]] = 1 # 1 for $x->[$N[0]]; () # '', undef, [ 1 ] # +exists
+$x->[$N[0]] = 1 # 1 for $x->[$N[1]]; () # '', undef, [ 1, undef ] # +exists
+$x->[$N[0]] = 1 # 1 for $x->[$N[0]]; () # '', undef, [ 1 ] # +delete
+$x->[$N[0]] = 1 # 1 for $x->[$N[1]]; () # '', undef, [ 1, undef ] # +delete
+$x->[$N[0]] = 1 # 1 for $x->[$N[0]]; () # '', undef, [ 1 ] # +store
+$x->[$N[0]] = 1 # 1 for $x->[$N[1]]; () # '', undef, [ 1, undef ] # +store
+
+--- dereferencing ---
+
+$x # no warnings 'uninitialized'; my @a = @$x; () # ($strict ? qr/^Can't use an undefined value as an ARRAY reference/ : ''), undef, undef
+$x # no warnings 'uninitialized'; my @a = @$x; () # ($strict ? qr/^Can't use an undefined value as an ARRAY reference/ : ''), undef, undef #
+$x # no warnings 'uninitialized'; my @a = @$x; () # ($strict ? qr/^Can't use an undefined value as an ARRAY reference/ : ''), undef, undef # +fetch
+$x # no warnings 'uninitialized'; my @a = @$x; () # ($strict ? qr/^Can't use an undefined value as an ARRAY reference/ : ''), undef, undef # +exists
+$x # no warnings 'uninitialized'; my @a = @$x; () # ($strict ? qr/^Can't use an undefined value as an ARRAY reference/ : ''), undef, undef # +delete
+$x # no warnings 'uninitialized'; my @a = @$x; () # ($strict ? qr/^Can't use an undefined value as an ARRAY reference/ : ''), undef, undef # +store
+
+$x->[$N[0]] = 1 # my @a = @$x; () # '', undef, [ 1 ] # +fetch
+$x->[$N[0]] = 1 # my @a = @$x; () # '', undef, [ 1 ] # +exists
+$x->[$N[0]] = 1 # my @a = @$x; () # '', undef, [ 1 ] # +delete
+$x->[$N[0]] = 1 # my @a = @$x; () # '', undef, [ 1 ] # +store
+
+--- exists ---
+
+$x # exists $x->[$N[0]] # '', '', [ ]
+$x # exists $x->[$N[0]] # '', '', undef #
+$x # exists $x->[$N[0]] # '', '', [ ] # +fetch
+$x # exists $x->[$N[0]] # '', '', undef # +exists
+$x # exists $x->[$N[0]] # '', '', [ ] # +delete
+$x # exists $x->[$N[0]] # '', '', [ ] # +store
+
+$x # exists $x->[$N[0]] # '', '', [ ] # +strict +fetch
+$x # exists $x->[$N[0]] # qr/^Reference vivification forbidden/, undef, undef # +strict +exists
+$x # exists $x->[$N[0]] # '', '', [ ] # +strict +delete
+$x # exists $x->[$N[0]] # '', '', [ ] # +strict +store
+
+$x # exists $x->[$N[0]]->[$N[1]] # '', '', [ [ ] ]
+$x # exists $x->[$N[0]]->[$N[1]] # '', '', undef #
+$x # exists $x->[$N[0]]->[$N[1]] # '', '', [ [ ] ] # +fetch
+$x # exists $x->[$N[0]]->[$N[1]] # '', '', undef # +exists
+$x # exists $x->[$N[0]]->[$N[1]] # '', '', [ [ ] ] # +delete
+$x # exists $x->[$N[0]]->[$N[1]] # '', '', [ [ ] ] # +store
+
+$x # exists $x->[$N[0]]->[$N[1]] # '', '', [ [ ] ] # +strict +fetch
+$x # exists $x->[$N[0]]->[$N[1]] # qr/^Reference vivification forbidden/, undef, undef # +strict +exists
+$x # exists $x->[$N[0]]->[$N[1]] # '', '', [ [ ] ] # +strict +delete
+$x # exists $x->[$N[0]]->[$N[1]] # '', '', [ [ ] ] # +strict +store
+
+$x->[$N[0]] = 1 # exists $x->[$N[0]] # '', 1, [ 1 ] # +fetch
+$x->[$N[0]] = 1 # exists $x->[$N[1]] # '', '', [ 1 ] # +fetch
+$x->[$N[0]] = 1 # exists $x->[$N[0]] # '', 1, [ 1 ] # +exists
+$x->[$N[0]] = 1 # exists $x->[$N[1]] # '', '', [ 1 ] # +exists
+$x->[$N[0]] = 1 # exists $x->[$N[0]] # '', 1, [ 1 ] # +delete
+$x->[$N[0]] = 1 # exists $x->[$N[1]] # '', '', [ 1 ] # +delete
+$x->[$N[0]] = 1 # exists $x->[$N[0]] # '', 1, [ 1 ] # +store
+$x->[$N[0]] = 1 # exists $x->[$N[1]] # '', '', [ 1 ] # +store
+
+$x->[$N[0]] = 1 # exists $x->[$N[0]] # '', 1, [ 1 ] # +strict +fetch
+$x->[$N[0]] = 1 # exists $x->[$N[1]] # '', '', [ 1 ] # +strict +fetch
+$x->[$N[0]] = 1 # exists $x->[$N[0]] # '', 1, [ 1 ] # +strict +exists
+$x->[$N[0]] = 1 # exists $x->[$N[1]] # '', '', [ 1 ] # +strict +exists
+$x->[$N[0]] = 1 # exists $x->[$N[0]] # '', 1, [ 1 ] # +strict +delete
+$x->[$N[0]] = 1 # exists $x->[$N[1]] # '', '', [ 1 ] # +strict +delete
+$x->[$N[0]] = 1 # exists $x->[$N[0]] # '', 1, [ 1 ] # +strict +store
+$x->[$N[0]] = 1 # exists $x->[$N[1]] # '', '', [ 1 ] # +strict +store
+
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[3]] # '', '', [ [ undef, 1 ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[2]]->[$N[3]] # '', '', [ [ undef, 1 ], undef, [ ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[3]] # '', '', [ [ undef, 1 ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[2]]->[$N[3]] # '', '', [ [ undef, 1 ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +delete
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[3]] # '', '', [ [ undef, 1 ] ] # +delete
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[2]]->[$N[3]] # '', '', [ [ undef, 1 ], undef, [ ] ] # +delete
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +store
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[3]] # '', '', [ [ undef, 1 ] ] # +store
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[2]]->[$N[3]] # '', '', [ [ undef, 1 ], undef, [ ] ] # +store
+
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[3]] # '', '', [ [ undef, 1 ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[2]]->[$N[3]] # '', '', [ [ undef, 1 ], undef, [ ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[3]] # '', '', [ [ undef, 1 ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[2]]->[$N[3]] # qr/^Reference vivification forbidden/, undef, [ [ undef, 1 ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[3]] # '', '', [ [ undef, 1 ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[2]]->[$N[3]] # '', '', [ [ undef, 1 ], undef, [ ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[1]] # '', 1, [ [ undef, 1 ] ] # +strict +store
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[0]]->[$N[3]] # '', '', [ [ undef, 1 ] ] # +strict +store
+$x->[$N[0]]->[$N[1]] = 1 # exists $x->[$N[2]]->[$N[3]] # '', '', [ [ undef, 1 ], undef, [ ] ] # +strict +store
+
+--- delete ---
+
+$x # delete $x->[$N[0]] # '', undef, [ ]
+$x # delete $x->[$N[0]] # '', undef, undef #
+$x # delete $x->[$N[0]] # '', undef, [ ] # +fetch
+$x # delete $x->[$N[0]] # '', undef, [ ] # +exists
+$x # delete $x->[$N[0]] # '', undef, undef # +delete
+$x # delete $x->[$N[0]] # '', undef, [ ] # +store
+
+$x # delete $x->[$N[0]] # '', undef, [ ] # +strict +fetch
+$x # delete $x->[$N[0]] # '', undef, [ ] # +strict +exists
+$x # delete $x->[$N[0]] # qr/^Reference vivification forbidden/, undef, undef # +strict +delete
+$x # delete $x->[$N[0]] # '', undef, [ ] # +strict +store
+
+$x # delete $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ]
+$x # delete $x->[$N[0]]->[$N[1]] # '', undef, undef #
+$x # delete $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +fetch
+$x # delete $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +exists
+$x # delete $x->[$N[0]]->[$N[1]] # '', undef, undef # +delete
+$x # delete $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +store
+
+$x # delete $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +strict +fetch
+$x # delete $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +strict +exists
+$x # delete $x->[$N[0]]->[$N[1]] # qr/^Reference vivification forbidden/, undef, undef # +strict +delete
+$x # delete $x->[$N[0]]->[$N[1]] # '', undef, [ [ ] ] # +strict +store
+
+$x->[$N[0]] = 1 # delete $x->[$N[0]] # '', 1, [ ] # +fetch
+$x->[$N[0]] = 1 # delete $x->[$N[1]] # '', undef, [ 1 ] # +fetch
+$x->[$N[0]] = 1 # delete $x->[$N[0]] # '', 1, [ ] # +exists
+$x->[$N[0]] = 1 # delete $x->[$N[1]] # '', undef, [ 1 ] # +exists
+$x->[$N[0]] = 1 # delete $x->[$N[0]] # '', 1, [ ] # +delete
+$x->[$N[0]] = 1 # delete $x->[$N[1]] # '', undef, [ 1 ] # +delete
+$x->[$N[0]] = 1 # delete $x->[$N[0]] # '', 1, [ ] # +store
+$x->[$N[0]] = 1 # delete $x->[$N[1]] # '', undef, [ 1 ] # +store
+
+$x->[$N[0]] = 1 # delete $x->[$N[0]] # '', 1, [ ] # +strict +fetch
+$x->[$N[0]] = 1 # delete $x->[$N[1]] # '', undef, [ 1 ] # +strict +fetch
+$x->[$N[0]] = 1 # delete $x->[$N[0]] # '', 1, [ ] # +strict +exists
+$x->[$N[0]] = 1 # delete $x->[$N[1]] # '', undef, [ 1 ] # +strict +exists
+$x->[$N[0]] = 1 # delete $x->[$N[0]] # '', 1, [ ] # +strict +delete
+$x->[$N[0]] = 1 # delete $x->[$N[1]] # '', undef, [ 1 ] # +strict +delete
+$x->[$N[0]] = 1 # delete $x->[$N[0]] # '', 1, [ ] # +strict +store
+$x->[$N[0]] = 1 # delete $x->[$N[1]] # '', undef, [ 1 ] # +strict +store
+
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[1]] # '', 1, [ [ ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ]# +fetch
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[1]] # '', 1, [ [ ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ]# +exists
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[1]] # '', 1, [ [ ] ] # +delete
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ]# +delete
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ] ]# +delete
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[1]] # '', 1, [ [ ] ] # +store
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ]# +store
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ] # +store
+
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[1]] # '', 1, [ [ ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ]# +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[1]] # '', 1, [ [ ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ]# +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[1]] # '', 1, [ [ ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[2]]->[$N[3]] # qr/^Reference vivification forbidden/, undef, [ [ undef, 1 ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[1]] # '', 1, [ [ ] ] # +strict +store
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[0]]->[$N[3]] # '', undef, [ [ undef, 1 ] ] # +strict +store
+$x->[$N[0]]->[$N[1]] = 1 # delete $x->[$N[2]]->[$N[3]] # '', undef, [ [ undef, 1 ], undef, [ ] ]# +strict +store
+
+--- store ---
+
+$x # $x->[$N[0]] = 1 # '', 1, [ 1 ]
+$x # $x->[$N[0]] = 1 # '', 1, [ 1 ] #
+$x # $x->[$N[0]] = 1 # '', 1, [ 1 ] # +fetch
+$x # $x->[$N[0]] = 1 # '', 1, [ 1 ] # +exists
+$x # $x->[$N[0]] = 1 # '', 1, [ 1 ] # +delete
+$x # $x->[$N[0]] = 1 # qr/^Can't vivify reference/, undef, undef # +store
+
+$x # $x->[$N[0]] = 1 # '', 1, [ 1 ] # +strict +fetch
+$x # $x->[$N[0]] = 1 # '', 1, [ 1 ] # +strict +exists
+$x # $x->[$N[0]] = 1 # '', 1, [ 1 ] # +strict +delete
+$x # $x->[$N[0]] = 1 # qr/^Reference vivification forbidden/, undef, undef # +strict +store
+
+$x # $x->[$N[0]]->[$N[1]] = 1 # '', 1, [ [ undef, 1 ] ]
+$x # $x->[$N[0]]->[$N[1]] = 1 # '', 1, [ [ undef, 1 ] ] #
+$x # $x->[$N[0]]->[$N[1]] = 1 # '', 1, [ [ undef, 1 ] ] # +fetch
+$x # $x->[$N[0]]->[$N[1]] = 1 # '', 1, [ [ undef, 1 ] ] # +exists
+$x # $x->[$N[0]]->[$N[1]] = 1 # '', 1, [ [ undef, 1 ] ] # +delete
+$x # $x->[$N[0]]->[$N[1]] = 1 # qr/^Can't vivify reference/, undef, undef # +store
+
+$x # $x->[$N[0]]->[$N[1]] = 1 # '', 1, [ [ undef, 1 ] ] # +strict +fetch
+$x # $x->[$N[0]]->[$N[1]] = 1 # '', 1, [ [ undef, 1 ] ] # +strict +exists
+$x # $x->[$N[0]]->[$N[1]] = 1 # '', 1, [ [ undef, 1 ] ] # +strict +delete
+$x # $x->[$N[0]]->[$N[1]] = 1 # qr/^Reference vivification forbidden/, undef, undef # +strict +store
+
+$x->[$N[0]] = 1 # $x->[$N[0]] = 2 # '', 2, [ 2 ] # +fetch
+$x->[$N[0]] = 1 # $x->[$N[1]] = 2 # '', 2, [ 1, 2 ] # +fetch
+$x->[$N[0]] = 1 # $x->[$N[0]] = 2 # '', 2, [ 2 ] # +exists
+$x->[$N[0]] = 1 # $x->[$N[1]] = 2 # '', 2, [ 1, 2 ] # +exists
+$x->[$N[0]] = 1 # $x->[$N[0]] = 2 # '', 2, [ 2 ] # +delete
+$x->[$N[0]] = 1 # $x->[$N[1]] = 2 # '', 2, [ 1, 2 ] # +delete
+$x->[$N[0]] = 1 # $x->[$N[0]] = 2 # '', 2, [ 2 ] # +store
+$x->[$N[0]] = 1 # $x->[$N[1]] = 2 # '', 2, [ 1, 2 ] # +store
+
+$x->[$N[0]] = 1 # $x->[$N[0]] = 2 # '', 2, [ 2 ] # +strict +fetch
+$x->[$N[0]] = 1 # $x->[$N[1]] = 2 # '', 2, [ 1, 2 ] # +strict +fetch
+$x->[$N[0]] = 1 # $x->[$N[0]] = 2 # '', 2, [ 2 ] # +strict +exists
+$x->[$N[0]] = 1 # $x->[$N[1]] = 2 # '', 2, [ 1, 2 ] # +strict +exists
+$x->[$N[0]] = 1 # $x->[$N[0]] = 2 # '', 2, [ 2 ] # +strict +delete
+$x->[$N[0]] = 1 # $x->[$N[1]] = 2 # '', 2, [ 1, 2 ] # +strict +delete
+$x->[$N[0]] = 1 # $x->[$N[0]] = 2 # '', 2, [ 2 ] # +strict +store
+$x->[$N[0]] = 1 # $x->[$N[1]] = 2 # '', 2, [ 1, 2 ] # +strict +store
+
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] = 2 # '', 2, [ [ undef, 2 ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] = 2 # '', 2, [ [ undef, 1, undef, 2 ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] = 2 # '', 2, [ [ undef, 1 ], undef, [ undef, undef, undef, 2 ] ] # +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] = 2 # '', 2, [ [ undef, 2 ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] = 2 # '', 2, [ [ undef, 1, undef, 2 ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] = 2 # '', 2, [ [ undef, 1 ], undef, [ undef, undef, undef, 2 ] ] # +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] = 2 # '', 2, [ [ undef, 2 ] ] # +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] = 2 # '', 2, [ [ undef, 1, undef, 2 ] ] # +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] = 2 # '', 2, [ [ undef, 1 ], undef, [ undef, undef, undef, 2 ] ] # +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] = 2 # '', 2, [ [ undef, 2 ] ] # +store
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] = 2 # '', 2, [ [ undef, 1, undef, 2 ] ] # +store
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] = 2 # qr/^Can't vivify reference/, undef, [ [ undef, 1 ] ] # +store
+
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] = 2 # '', 2, [ [ undef, 2 ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] = 2 # '', 2, [ [ undef, 1, undef, 2 ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] = 2 # '', 2, [ [ undef, 1 ], undef, [ undef, undef, undef, 2 ] ] # +strict +fetch
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] = 2 # '', 2, [ [ undef, 2 ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] = 2 # '', 2, [ [ undef, 1, undef, 2 ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] = 2 # '', 2, [ [ undef, 1 ], undef, [ undef, undef, undef, 2 ] ] # +strict +exists
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] = 2 # '', 2, [ [ undef, 2 ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] = 2 # '', 2, [ [ undef, 1, undef, 2 ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] = 2 # '', 2, [ [ undef, 1 ], undef, [ undef, undef, undef, 2 ] ] # +strict +delete
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[1]] = 2 # '', 2, [ [ undef, 2 ] ] # +strict +store
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[0]]->[$N[3]] = 2 # '', 2, [ [ undef, 1, undef, 2 ] ] # +strict +store
+$x->[$N[0]]->[$N[1]] = 1 # $x->[$N[2]]->[$N[3]] = 2 # qr/^Reference vivification forbidden/, undef, [ [ undef, 1 ] ] # +strict +store
index b3521c5089aab1de49820143b78cabb43c13057c..87dfd0965fc81da8b35b0f0b6a5f65823b64af5f 100644 (file)
@@ -94,6 +94,7 @@ sub testcase_ok {
  push @testcases, @extra;
  for (@testcases) {
   my ($testcase, $desc) = generate(@$_);
+  my @N = (0 .. 9);
   eval $testcase;
   diag "== This testcase failed to compile ==\n$testcase\n## Reason: $@" if $@;
  }