summaryrefslogtreecommitdiff
path: root/t/op/coresubs.t
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-08-25 18:06:23 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-08-25 23:02:09 -0700
commit19c481f4fff148c75b12b0f9ef8dadc7116b1001 (patch)
tree0c081b0056c58f0e0c8e1ffccff320314dc03e6a /t/op/coresubs.t
parent30901a8a3fcf590cb60375fd3b39c6b0d0bf6e00 (diff)
downloadperl-19c481f4fff148c75b12b0f9ef8dadc7116b1001.tar.gz
&CORE::foo() for dbmopen and dbmclose
This commit allows the subs in the CORE package for close, getc and readline to be called through references and via ampersand syntax. A special case for each of them is added to pp_coreargs to deal with calls with no arguments. Pushing a null on to the stack (which I’m doing for other ops) won’t work, as a null already means something for these cases: close($f) won’t vivify a typeglob if $f is a string, so the implicit rv2gv pushes a null on to the stack.
Diffstat (limited to 't/op/coresubs.t')
-rw-r--r--t/op/coresubs.t32
1 files changed, 32 insertions, 0 deletions
diff --git a/t/op/coresubs.t b/t/op/coresubs.t
index a3c1eb3dec..9ed64ccbe7 100644
--- a/t/op/coresubs.t
+++ b/t/op/coresubs.t
@@ -136,6 +136,26 @@ sub test_proto {
like $@, qr/^Not enough arguments for $desc at /,
"&$o with too few args";
}
+ elsif ($p =~ /^\\%\$*\z/) { # \% and \%$$
+ $tests += 5;
+
+ eval "&CORE::$o(" . join(",", (1) x length $p) . ")";
+ like $@, qr/^Too many arguments for $o at /,
+ "&$o with too many args";
+ eval " &CORE::$o(" . join(",", (1) x (length($p)-2)) . ") ";
+ like $@, qr/^Not enough arguments for $o at /,
+ "&$o with too few args";
+ my $moreargs = ",1" x (length($p) - 2);
+ eval " &CORE::$o([]$moreargs) ";
+ like $@, qr/^Type of arg 1 to &CORE::$o must be hash reference at /,
+ "&$o with array ref arg";
+ eval " &CORE::$o(*foo$moreargs) ";
+ like $@, qr/^Type of arg 1 to &CORE::$o must be hash reference at /,
+ "&$o with typeglob arg";
+ eval " &CORE::$o(bless([], 'hov')$moreargs) ";
+ like $@, qr/^Type of arg 1 to &CORE::$o must be hash reference at /,
+ "&$o with non-hash arg with hash overload (which does not count)";
+ }
else {
die "Please add tests for the $p prototype";
@@ -280,6 +300,18 @@ CORE::given(1) {
test_proto 'cos';
test_proto 'crypt';
+test_proto 'dbmclose';
+test_proto 'dbmopen';
+{
+ last unless eval { require AnyDBM_File };
+ $tests ++;
+ my $filename = tempfile();
+ &mydbmopen(\my %db, $filename, 0666);
+ $db{1} = 2; $db{3} = 4;
+ &mydbmclose(\%db);
+ is scalar keys %db, 0, '&dbmopen and &dbmclose';
+}
+
test_proto 'die';
eval { dier('quinquangle') };
is $@, "quinquangle at frob line 6.\n", '&CORE::die'; $tests ++;