From: Vincent Pit Date: Wed, 2 Jan 2013 00:22:27 +0000 (+0100) Subject: Skip 'yield to subst context' tests on perl 5.8 and below X-Git-Tag: v0.22~7 X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=6c74fb492a0404fa8822211cba07b1027ce3cfec;hp=6c74fb492a0404fa8822211cba07b1027ce3cfec;p=perl%2Fmodules%2FScope-Upper.git Skip 'yield to subst context' tests on perl 5.8 and below The snippet : my $s = "foo"; eval { $s =~ s/./die "wut"/e }; qr/bar/; segfaults on a threaded, debugging and poisonous perl 5.8.9. Just to be safe, the relevant test won't be run before perl 5.10. ---