This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d9ef015
)
With Win32 now building DynaLoader in ext, it is now built with
author
Steve Hay
<SteveHay@planit.com>
Mon, 28 Sep 2009 14:12:50 +0000
(15:12 +0100)
committer
Steve Hay
<SteveHay@planit.com>
Mon, 28 Sep 2009 14:12:50 +0000
(15:12 +0100)
-noprototypes (as was always the case on *nix), so no need to explicitly
disable prototype checking in DynaLoader.t any more, i.e. we can revert
a2c4b2d6db383103b96e4733616b17d0a3bb0bd9
ext/DynaLoader/t/DynaLoader.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/DynaLoader/t/DynaLoader.t
b/ext/DynaLoader/t/DynaLoader.t
index
e9d55e7
..
fa07272
100644
(file)
--- a/
ext/DynaLoader/t/DynaLoader.t
+++ b/
ext/DynaLoader/t/DynaLoader.t
@@
-80,7
+80,7
@@
if ($Config{usedl}) {
# .. for dl_load_file()
SKIP: {
skip "no dl_load_file with dl_none.xs", 2 unless $Config{usedl};
- eval {
&
DynaLoader::dl_load_file() };
+ eval { DynaLoader::dl_load_file() };
like( $@, q{/^Usage: DynaLoader::dl_load_file\(filename, flags=0\)/},
"calling DynaLoader::dl_load_file() with no argument" );