diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-04-21 09:20:56 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-04-21 09:20:56 +0000 |
commit | 8cb289bd08361a8bd4bed96b220c3e5ea828821b (patch) | |
tree | f1d0f18d727ce3d0edb927c4a0405fb13e0344f4 /ext | |
parent | c94dd5be9196e7fc999830ac8069b03bb8f510be (diff) | |
download | perl-8cb289bd08361a8bd4bed96b220c3e5ea828821b.tar.gz |
Upgrade to version-0.7203.
Plus a change in Module::Build::Version, specific to bleadperl.
p4raw-id: //depot/perl@31005
Diffstat (limited to 'ext')
-rw-r--r-- | ext/DynaLoader/t/XSLoader.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/DynaLoader/t/XSLoader.t b/ext/DynaLoader/t/XSLoader.t index e35c4eea4a..dea14cd335 100644 --- a/ext/DynaLoader/t/XSLoader.t +++ b/ext/DynaLoader/t/XSLoader.t @@ -64,7 +64,7 @@ for my $module (sort keys %modules) { skip "$module not available", 3 if $extensions !~ /\b$module\b/; eval qq{ package $module; XSLoader::load('$module', "qunckkk"); }; - like( $@, "/^$module object version \\S+ does not match bootstrap parameter (?:qunckkk|0\\.000)/", + like( $@, "/^$module object version \\S+ does not match bootstrap parameter (?:qunckkk|0)/", "calling XSLoader::load() with a XS module and an incorrect version" ); eval qq{ package $module; XSLoader::load('$module'); }; |