From 914cc469d74488bb6ddcaffe8316c8d3ac9479db Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 10 Jul 2011 03:45:28 -0500 Subject: nope, the opcode replacement won't work on 5.10 --- t/core.t | 4 ++++ t/error.t | 4 ++++ 2 files changed, 8 insertions(+) (limited to 't') diff --git a/t/core.t b/t/core.t index 69c0942..9c646d4 100644 --- a/t/core.t +++ b/t/core.t @@ -3,6 +3,10 @@ use strict; use warnings; use Test::More; +BEGIN { + plan skip_all => "xs version requires 5.11.2" unless $] >= 5.011002; +} + use smartmatch 'core'; no warnings 'uninitialized'; diff --git a/t/error.t b/t/error.t index edba950..1c8ea3f 100644 --- a/t/error.t +++ b/t/error.t @@ -3,6 +3,10 @@ use strict; use warnings; use Test::More; +BEGIN { + plan skip_all => "xs version requires 5.11.2" unless $] >= 5.011002; +} + my $foo = bless {}; my $bar = bless {}; -- cgit v1.2.3-54-g00ecf