diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-11-29 13:17:31 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-12-14 09:22:40 +0100 |
commit | b6c36746cf4d7234615a50c042561bf21daa51a7 (patch) | |
tree | 907603ccbf4be7eedc9d6d790e0752c37171d613 /t | |
parent | 476161f6df66100c5d0786092b0320bded84031b (diff) | |
download | perl-b6c36746cf4d7234615a50c042561bf21daa51a7.tar.gz |
Remove the BeOS port.
BeOS was an operating system for personal computers developed by Be Inc,
initially for their BeBox hardware. The OS Haiku was written as an open source
replacement/continuation for BeOS, and its perl port is current and actively
maintained.
The BeOS port has not been updated since 2004.
Diffstat (limited to 't')
-rw-r--r-- | t/io/fs.t | 2 | ||||
-rw-r--r-- | t/io/pipe.t | 4 | ||||
-rw-r--r-- | t/op/magic.t | 3 |
3 files changed, 2 insertions, 7 deletions
@@ -275,7 +275,7 @@ sub check_utime_result { is( $atime, 500000001, 'atime' ); is( $mtime, 500000000 + $delta, 'mtime' ); } - elsif ($^O eq 'beos' || $^O eq 'haiku') { + elsif ($^O eq 'haiku') { SKIP: { skip "atime not updated", 1; } diff --git a/t/io/pipe.t b/t/io/pipe.t index 8d262bbe9f..50d589dc85 100644 --- a/t/io/pipe.t +++ b/t/io/pipe.t @@ -149,11 +149,9 @@ SKIP: { SKIP: { # Sfio doesn't report failure when closing a broken pipe # that has pending output. Go figure. - # BeOS will not write to broken pipes, either. # Nor does POSIX-BC. skip "Won't report failure on broken pipe", 1 - if $Config{d_sfio} || $^O eq 'beos' || - $^O eq 'posix-bc'; + if $Config{d_sfio} || $^O eq 'posix-bc'; local $SIG{PIPE} = 'IGNORE'; open NIL, qq{|$Perl -e "exit 0"} or die "open failed: $!"; diff --git a/t/op/magic.t b/t/op/magic.t index 795124b7a7..990de5580b 100644 --- a/t/op/magic.t +++ b/t/op/magic.t @@ -55,7 +55,6 @@ $Is_VMS = $^O eq 'VMS'; $Is_Dos = $^O eq 'dos'; $Is_os2 = $^O eq 'os2'; $Is_Cygwin = $^O eq 'cygwin'; -$Is_BeOS = $^O eq 'beos'; $PERL = $ENV{PERL} || ($Is_NetWare ? 'perl' : @@ -333,7 +332,6 @@ EOF ok chmod(0755, $script) or diag $!; $_ = $Is_VMS ? `$perl $script` : `$script`; s/\.exe//i if $Is_Dos or $Is_Cygwin or $Is_os2; - s{./$script}{$script} if $Is_BeOS; # revert BeOS execvp() side-effect s{is perl}{is $perl}; # for systems where $^X is only a basename s{\\}{/}g; if ($Is_MSWin32 || $Is_os2) { @@ -343,7 +341,6 @@ EOF } $_ = `$perl $script`; s/\.exe//i if $Is_Dos or $Is_os2 or $Is_Cygwin; - s{./$perl}{$perl} if $Is_BeOS; # revert BeOS execvp() side-effect s{\\}{/}g; if ($Is_MSWin32 || $Is_os2) { is uc $_, uc $s1; |