Skip to content

Commit

Permalink
Skip nest invalidated by 5.17 change
Browse files Browse the repository at this point in the history
  • Loading branch information
timbunce committed Oct 4, 2012
1 parent 90600da commit cf9f867
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions t/code.t
Expand Up @@ -15,8 +15,11 @@ my $swoosh_size = total_size(\&swoosh);
my $crunch_size = total_size(\&crunch);

cmp_ok($whack_size, '>', 0, 'CV generated at runtime has a size');
cmp_ok($zwapp_size, '>', $whack_size,
'CV stubbed at compiletime is larger (CvOUTSIDE is set and followed)');
if ($] < 5.017) { # blead 186a5ba82d5844e9713475c494fcd6682968609f
cmp_ok($zwapp_size, '>', $whack_size,
'CV stubbed at compiletime is larger (CvOUTSIDE is set and followed)');
}
else { pass() }
cmp_ok(length prototype \&swoosh, '>', 0, 'prototype has a length');
cmp_ok($swoosh_size, '>', $zwapp_size + length prototype \&swoosh,
'prototypes add to the size');
Expand Down

0 comments on commit cf9f867

Please sign in to comment.