summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorYitzchak Scott-Thoennes <sthoenna@efn.org>2002-05-07 11:40:44 -0700
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-08 22:39:11 +0000
commitf0faabb7a112c0469c217fed92a3d55cbe5f1735 (patch)
tree87203cd085590ee5c1fc3167d382d38213430ee7 /t
parent4cab98c0e4cbb2d394d0460eb0bee09f843632e8 (diff)
downloadperl-f0faabb7a112c0469c217fed92a3d55cbe5f1735.tar.gz
[PATCH] Re: perl@16433
Date: Tue, 07 May 2002 18:40:44 -0700 Message-ID: <cII28gzkgaOS092yn@efn.org> Subject: Re: [PATCH] Re: perl@16433 From: sthoenna@efn.org (Yitzchak Scott-Thoennes) Date: Wed, 08 May 2002 10:16:42 -0700 Message-ID: <61V28gzkg+jG092yn@efn.org> p4raw-id: //depot/perl@16501
Diffstat (limited to 't')
-rwxr-xr-xt/op/tie.t55
1 files changed, 42 insertions, 13 deletions
diff --git a/t/op/tie.t b/t/op/tie.t
index f8f2322632..ea37cb3a92 100755
--- a/t/op/tie.t
+++ b/t/op/tie.t
@@ -16,24 +16,32 @@ $SIG{__WARN__} = sub { die "WARNING: @_" } ;
$SIG{__DIE__} = sub { die @_ };
undef $/;
-@prgs = split "\n########\n", <DATA>;
+@prgs = split /^########\n/m, <DATA>;
print "1..", scalar @prgs, "\n";
for (@prgs){
- my($prog,$expected) = split(/\nEXPECT\n/, $_);
+ ++$i;
+ my($prog,$expected) = split(/\nEXPECT\n/, $_, 2);
+ print("not ok $i # bad test format\n"), next
+ unless defined $expected;
+ my ($testname) = $prog =~ /^(# .*)\n/;
+ $testname ||= '';
eval "$prog" ;
$status = $?;
$results = $@ ;
$results =~ s/\n+$//;
$expected =~ s/\n+$//;
- if ( $status or $results and $results !~ /^(WARNING: )?$expected/){
+ if ( $status || ($expected eq '') != ($results eq '') ||
+ $results !~ /^(WARNING: )?$expected/){
print STDERR "STATUS: $status\n";
print STDERR "PROG: $prog\n";
print STDERR "EXPECTED:\n$expected\n";
print STDERR "GOT:\n$results\n";
- print "not ";
+ print "not ok $i $testname\n";
+ }
+ else {
+ print "ok $i $testname\n";
}
- print "ok ", ++$i, "\n";
}
__END__
@@ -163,26 +171,47 @@ untie %H;
EXPECT
########
# Forbidden aggregate self-ties
-my ($a, $b) = (0, 0);
sub Self::TIEHASH { bless $_[1], $_[0] }
-sub Self::DESTROY { $b = $_[0] + 1; }
{
- my %c = 42;
+ my %c;
tie %c, 'Self', \%c;
}
EXPECT
Self-ties of arrays and hashes are not supported
########
# Allowed scalar self-ties
-my ($a, $b) = (0, 0);
+my $destroyed = 0;
sub Self::TIESCALAR { bless $_[1], $_[0] }
-sub Self::DESTROY { $b = $_[0] + 1; }
+sub Self::DESTROY { $destroyed = 1; }
{
my $c = 42;
- $a = $c + 0;
tie $c, 'Self', \$c;
}
-die unless $a == 0 && $b == 43;
+die "self-tied scalar not DESTROYd" unless $destroyed == 1;
+EXPECT
+########
+# Allowed glob self-ties
+my $destroyed = 0;
+sub Self2::TIEHANDLE { bless $_[1], $_[0] }
+sub Self2::DESTROY { $destroyed = 1; }
+{
+ use Symbol;
+ my $c = gensym;
+ tie *$c, 'Self2', $c;
+}
+die "self-tied glob not DESTROYd" unless $destroyed == 1;
+EXPECT
+########
+# Allowed IO self-ties
+my $destroyed = 0;
+sub Self3::TIEHANDLE { bless $_[1], $_[0] }
+sub Self3::DESTROY { $destroyed = 1; }
+{
+ use Symbol 'geniosym';
+ my $c = geniosym;
+ tie *$c, 'Self3', $c;
+}
+die "self-tied IO not DESTROYd" unless $destroyed == 1;
EXPECT
########
# Interaction of tie and vec
@@ -197,7 +226,7 @@ vec($b,1,1)=0;
die unless $a eq $b;
EXPECT
########
-# An attempt at lvalueable barewords broke this
+# TODO An attempt at lvalueable barewords broke this
tie FH, 'main';
EXPECT