]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Lower t/17-ctl.t's last test expectations
authorVincent Pit <vince@profvince.com>
Sun, 24 Jun 2012 19:19:50 +0000 (21:19 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 24 Jun 2012 19:20:06 +0000 (21:20 +0200)
With ActivePerl, there's only one line produced by this test because of
some strange interference between local *_, loading Exporter.pm and
compiling '-d _'. Since this test has also been broken recently by a
change in the core, it is more reliable to stop asking for the exact
count of matches.

This fixes RT #77991.

t/17-ctl.t

index ef1be224438280d5825de3fc9b8df7b002252d66..4235938027d07dc904d2897fa3291e4c32b9af32 100644 (file)
@@ -266,18 +266,10 @@ SKIP:
  skip 'No working Capture::Tiny is installed'=> $count unless $has_capture_tiny;
 
  my $output = Capture::Tiny::capture_merged(sub { run_perl <<' CODE' });
-use Variable::Magic qw<wizard cast>; BEGIN { cast %::, wizard fetch => sub { die q[salsify] } } hlagh()
+use Variable::Magic qw<wizard cast>; BEGIN { cast %::, wizard fetch => sub { die q[raddish] } } hlagh()
  CODE
  skip 'Test code didn\'t run properly' => $count unless defined $output;
- my $suffix = "\nExecution(?s:.*)";
- if ("$]" >= 5.017) {
-  $suffix = "(?:\nsalsify at -e line \\d+.){16}" . $suffix;
- } elsif ("$]" >= 5.011_005) {
-  $suffix = "(?:\nsalsify at -e line \\d+.){12}" . $suffix;
- } elsif ("$]" >= 5.011) {
-  $suffix = "(?:\nsalsify at -e line \\d+.){3}" . $suffix;
- }
- like $output, expect('salsify', '-e', $suffix),
-                  'die in free callback at compile time and not in eval string';
+ like $output, qr/^(?:raddish at -e line \d+\.\n)+Execution(?s:.*)/,
+               'die in free callback at compile time and not in eval string';
  --$count;
 }