diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-02-25 14:59:55 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-03-06 09:13:49 +0000 |
commit | 632e037a5753f74d4e3c88cf452d9953b8579fd3 (patch) | |
tree | d5ee435ec383eb21face7a8676e7980486b006ea /t/op/taint.t | |
parent | 164766b20b2667cd7984ecaf094dcaba9a39117f (diff) | |
download | perl-632e037a5753f74d4e3c88cf452d9953b8579fd3.tar.gz |
Skip taint.t and lex_utf8.t under minitest, as both require C<re>.
Diffstat (limited to 't/op/taint.t')
-rw-r--r-- | t/op/taint.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/op/taint.t b/t/op/taint.t index fbbe2a07be..af51d95bd9 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; |