summaryrefslogtreecommitdiff
path: root/ext/PerlIO/t
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2001-11-04 10:41:24 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-04 15:15:42 +0000
commitb26b1ab5d13700c72864b2f555b309a62eee6884 (patch)
treeb1ee9c83ded7c16daa937193b5c7361d46810d1f /ext/PerlIO/t
parent6222ea982923143b82f6cc746e96854484c8537b (diff)
downloadperl-b26b1ab5d13700c72864b2f555b309a62eee6884.tar.gz
[REPATCH] Re: PerlIOBuf_dup
Message-ID: <20011104104123.U20123@plum.flirble.org> p4raw-id: //depot/perl@12839
Diffstat (limited to 'ext/PerlIO/t')
-rw-r--r--ext/PerlIO/t/encoding.t20
1 files changed, 18 insertions, 2 deletions
diff --git a/ext/PerlIO/t/encoding.t b/ext/PerlIO/t/encoding.t
index dc2b2ba864..590fc00266 100644
--- a/ext/PerlIO/t/encoding.t
+++ b/ext/PerlIO/t/encoding.t
@@ -9,10 +9,11 @@ BEGIN {
}
}
-print "1..8\n";
+print "1..10\n";
my $grk = "grk$$";
my $utf = "utf$$";
+my $fail1 = "fail$$";
if (open(GRK, ">$grk")) {
# alpha beta gamma in ISO 8859-7
@@ -57,6 +58,21 @@ if (open(GRK, "<$grk")) {
close GRK;
}
+$SIG{__WARN__} = sub {$warn = $_[0]};
+
+if (open(FAIL, ">:encoding(NoneSuch)", $fail1)) {
+ print "not ok 9 # Open should fail\n";
+} else {
+ print "ok 9\n";
+}
+if (!defined $warn) {
+ print "not ok 10 # warning is undef\n";
+} elsif ($warn =~ /^Cannot find encoding "NoneSuch" at/) {
+ print "ok 10\n";
+} else {
+ print "not ok 10 # warning is '$warn'";
+}
+
END {
- unlink($grk, $utf);
+ unlink($grk, $utf, $fail1);
}