diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2009-08-01 19:42:50 +0100 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2009-08-03 12:14:45 +0100 |
commit | cd86ed9d430a95bb9cf370c699245e1b667c146d (patch) | |
tree | 94851f58db71d59caf0de5ae5b7af3c0499622c5 /t/op | |
parent | 1af1c0d6fc56624ceeee486b9d34f20643ac0ecd (diff) | |
download | perl-cd86ed9d430a95bb9cf370c699245e1b667c146d.tar.gz |
Remove the port to MiNT. It's a dead platform that hasn't had any love since 5.005
Diffstat (limited to 't/op')
-rw-r--r-- | t/op/taint.t | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/t/op/taint.t b/t/op/taint.t index 0ac02a6306..87592d5fee 100644 --- a/t/op/taint.t +++ b/t/op/taint.t @@ -430,8 +430,7 @@ SKIP: { # just because Errno possibly failing. test eval('$!{ENOENT}') || $! == 2 || # File not found - ($Is_Dos && $! == 22) || - ($^O eq 'mint' && $! == 33); + ($Is_Dos && $! == 22); test !eval { open FOO, "> $foo" }, 'open for write'; test $@ =~ /^Insecure dependency/, $@; |