diff options
author | Sébastien Aperghis-Tramoni <sebastien@aperghis.net> | 2006-05-02 03:37:03 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-05-03 16:09:48 +0000 |
commit | 16d5c2f8b1cda0f138e42178a21cad8ee16e6a20 (patch) | |
tree | 37a0b9059726e31e8e45457c06ed33fb185c1935 /t | |
parent | 3ea285d10994f16a1808764be228780ee879570d (diff) | |
download | perl-16d5c2f8b1cda0f138e42178a21cad8ee16e6a20.tar.gz |
-Dmad breaks a few tests
Message-Id: <64F8ECEA-D96B-11DA-AA80-000502F3279F@free.fr>
(part of, with tweaks)
p4raw-id: //depot/perl@28080
Diffstat (limited to 't')
-rw-r--r-- | t/op/incfilter.t | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/t/op/incfilter.t b/t/op/incfilter.t index 0a5381e7fb..0535b7641c 100644 --- a/t/op/incfilter.t +++ b/t/op/incfilter.t @@ -12,6 +12,7 @@ BEGIN { require "test.pl"; } use strict; +use Config; use Filter::Util::Call; plan(tests => 141); @@ -156,7 +157,10 @@ BEGIN {prepend_block_counting_filter}; pas("SSS make s fast SSS"); EOC -do [$fh, sub {s/s/ss/gs; s/([\nS])/$1$1$1/gs; return;}] or die; +TODO: { + todo_skip "disabled under -Dmad", 50 if $Config{mad}; + do [$fh, sub {s/s/ss/gs; s/([\nS])/$1$1$1/gs; return;}] or die; +} sub prepend_line_counting_filter { filter_add(sub { |