-
Notifications
You must be signed in to change notification settings - Fork 558
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PATCH] Fix B extension skip in ext/B/t/strict.t #16783
Comments
From @ppisarIf perl is built in an environment with a locale where ../ext/B/t/showlex.t .............. ok The tests match $Config{'extensions'} for "B" and skip the tests if not This patch makes the ext/B/t/strict.t test alike to other ones. Signed-off-by: Petr PÃsaÅ� <ppisar@redhat.com> ext/B/t/strict.t | 2 +- Inline Patchdiff --git a/ext/B/t/strict.t b/ext/B/t/strict.t
index 4d1b84aa20..9f5eacd7da 100644
--- a/ext/B/t/strict.t
+++ b/ext/B/t/strict.t
@@ -7,7 +7,7 @@ use Config;
use Test::More;
BEGIN {
- if ( ( $Config{'extensions'} !~ /\sB\s/ ) ) {
+ if ( ( $Config{'extensions'} !~ /\bB\b/ ) ) {
plan skip_all => "Perl was not compiled with B";
exit 0;
}
--
2.17.2 |
From @jkeenanOn Fri, 07 Dec 2018 11:30:44 GMT, ppisar wrote:
Thanks. Pushed to blead in commit dc0a6b7 -- |
The RT System itself - Status changed from 'new' to 'open' |
@jkeenan - Status changed from 'open' to 'pending release' |
From @khwilliamsonThank you for filing this report. You have helped make Perl better. With the release today of Perl 5.30.0, this and 160 other issues have been Perl 5.30.0 may be downloaded via: If you find that the problem persists, feel free to reopen this ticket. |
@khwilliamson - Status changed from 'pending release' to 'resolved' |
Migrated from rt.perl.org#133713 (status was 'resolved')
Searchable as RT133713$
The text was updated successfully, but these errors were encountered: