From 574b3e491b6ee87753bb1228376c62481ae5bfc3 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 10 Jul 2011 01:35:05 -0500 Subject: for now, don't use xs implementation on pre-5.014 perls they don't have the cv_set_call_checker stuff, and i'm not quite sure how Devel::CallChecker works --- t/core.t | 5 +++++ t/error.t | 5 +++++ 2 files changed, 10 insertions(+) (limited to 't') diff --git a/t/core.t b/t/core.t index 69c0942..0d7f7ec 100644 --- a/t/core.t +++ b/t/core.t @@ -3,6 +3,11 @@ use strict; use warnings; use Test::More; +BEGIN { + plan skip_all => "no c implementation for pre-5.14 for now" + if $] < 5.014; +} + use smartmatch 'core'; no warnings 'uninitialized'; diff --git a/t/error.t b/t/error.t index edba950..4f86a87 100644 --- a/t/error.t +++ b/t/error.t @@ -3,6 +3,11 @@ use strict; use warnings; use Test::More; +BEGIN { + plan skip_all => "no c implementation for pre-5.14 for now" + if $] < 5.014; +} + my $foo = bless {}; my $bar = bless {}; -- cgit v1.2.3-54-g00ecf