From 632e037a5753f74d4e3c88cf452d9953b8579fd3 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Fri, 25 Feb 2011 14:59:55 +0000 Subject: [PATCH] Skip taint.t and lex_utf8.t under minitest, as both require C. --- t/op/taint.t | 3 ++- t/uni/lex_utf8.t | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/t/op/taint.t b/t/op/taint.t index fbbe2a0..af51d95 100644 --- a/t/op/taint.t +++ b/t/op/taint.t @@ -10,12 +10,13 @@ BEGIN { chdir 't' if -d 't'; @INC = '../lib'; + require './test.pl'; + skip_all_if_miniperl("no dynamic loading on miniperl, no re"); } use strict; use Config; -BEGIN { require './test.pl'; } plan tests => 766; $| = 1; diff --git a/t/uni/lex_utf8.t b/t/uni/lex_utf8.t index 2aa9221..a5747cb 100644 --- a/t/uni/lex_utf8.t +++ b/t/uni/lex_utf8.t @@ -10,6 +10,7 @@ BEGIN { $| = 1; require './test.pl'; + skip_all_if_miniperl("no dynamic loading on miniperl, no re"); } use strict; -- 2.7.4