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/io | |
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/io')
-rw-r--r-- | t/io/fs.t | 5 | ||||
-rw-r--r-- | t/io/layers.t | 2 | ||||
-rw-r--r-- | t/io/tell.t | 2 |
3 files changed, 4 insertions, 5 deletions
@@ -27,9 +27,8 @@ my $has_link = $Config{d_link}; my $accurate_timestamps = !($^O eq 'MSWin32' || $^O eq 'NetWare' || $^O eq 'dos' || $^O eq 'os2' || - $^O eq 'mint' || $^O eq 'cygwin' || - $^O eq 'amigaos' || $wd =~ m#$Config{afsroot}/# || - $Is_MacOS + $^O eq 'cygwin' || $^O eq 'amigaos' || + $wd =~ m#$Config{afsroot}/# || $Is_MacOS ); if (defined &Win32::IsWinNT && Win32::IsWinNT()) { diff --git a/t/io/layers.t b/t/io/layers.t index cddd436df3..ac6163a1ea 100644 --- a/t/io/layers.t +++ b/t/io/layers.t @@ -27,7 +27,7 @@ BEGIN { use Config; -my $DOSISH = $^O =~ /^(?:MSWin32|os2|dos|NetWare|mint)$/ ? 1 : 0; +my $DOSISH = $^O =~ /^(?:MSWin32|os2|dos|NetWare)$/ ? 1 : 0; $DOSISH = 1 if !$DOSISH and $^O =~ /^uwin/; my $NONSTDIO = exists $ENV{PERLIO} && $ENV{PERLIO} ne 'stdio' ? 1 : 0; my $FASTSTDIO = $Config{d_faststdio} && $Config{usefaststdio} ? 1 : 0; diff --git a/t/io/tell.t b/t/io/tell.t index 09b61a3dfa..8e4f14e55d 100644 --- a/t/io/tell.t +++ b/t/io/tell.t @@ -11,7 +11,7 @@ print "1..28\n"; $TST = 'TST'; $Is_Dosish = ($^O eq 'MSWin32' or $^O eq 'NetWare' or $^O eq 'dos' or - $^O eq 'os2' or $^O eq 'mint' or $^O eq 'cygwin' or + $^O eq 'os2' or $^O eq 'cygwin' or $^O =~ /^uwin/); open($TST, 'harness') || (die "Can't open harness"); |