diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-01-03 16:32:26 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-01-16 10:42:47 +0100 |
commit | 7eb35c035978bf0530591a57244b6922682a3344 (patch) | |
tree | 87a823fa033743f168d76f8b2d2255d436762bd7 /t/op/stat.t | |
parent | 061a8e130aae43f2cb15bed6b6ae9e3d5b5c837e (diff) | |
download | perl-7eb35c035978bf0530591a57244b6922682a3344.tar.gz |
Remove the Rhapsody port.
Rhapsody was an Apple OS that later evolved into Darwin and Mac OS X. It was
initially only released to developers, but later became Mac OS X Server, with
releases in 1999 and 2000. It was obsoleted by Mac OS X 10.0, released in
March 2001.
Diffstat (limited to 't/op/stat.t')
-rw-r--r-- | t/op/stat.t | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/t/op/stat.t b/t/op/stat.t index c49aaf4e28..c5c74ca26c 100644 --- a/t/op/stat.t +++ b/t/op/stat.t @@ -38,7 +38,6 @@ $Is_Solaris = $^O eq 'solaris'; $Is_VMS = $^O eq 'VMS'; $Is_DGUX = $^O eq 'dgux'; $Is_MPRAS = $^O =~ /svr4/ && -f '/etc/.relid'; -$Is_Rhapsody= $^O eq 'rhapsody'; $Is_Dosish = $Is_Dos || $Is_OS2 || $Is_MSWin32 || $Is_NetWare; @@ -344,7 +343,7 @@ SKIP: { SKIP: { skip "These tests require a TTY", 4 if $ENV{PERL_SKIP_TTY_TEST}; - my $TTY = $Is_Rhapsody ? "/dev/ttyp0" : "/dev/tty"; + my $TTY = "/dev/tty"; SKIP: { skip "Test uses unixisms", 2 if $Is_MSWin32 || $Is_NetWare; |