-
Notifications
You must be signed in to change notification settings - Fork 571
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
File::Glob sometimes returns pattern if no match, regardless of GLOB_NOCHECK #14702
Comments
From @epaCreated by @epaThe documentation for File::Glob states File::Glob::bsd_glob() implements the FreeBSD glob(3) routine, The POSIX defined flags for bsd_glob() are: This implies that the behaviour of returning the pattern back on no % mkdir new The first of the four cases above is odd. GLOB_NOCHECK was not While this is consistent with Perl's builtin glob(), it seems I suggest fixing the behaviour of bsd_glob() to be as documented - so (That does not imply that Perl's builtin glob() should change its If changing what bsd_glob does is too great a break with bugwards Perl Info
|
From @ap* Ed Avis <perlbug-followup@perl.org> [2015-05-13 14:25]:
Within an empty directory the attached C program yields the following (no flags) x: (GLOB_NOCHECK) x: (no flags) x*: (GLOB_NOCHECK) x*: |
From @ap#include <stdio.h>
#include <glob.h>
void
print_glob (char * description, char * pattern, int flags)
{
glob_t g;
int i;
printf("\n(%s) %s:\n", description, pattern);
if (glob(pattern, flags, NULL, &g))
return (void) perror("");
for (i = 0; i < g.gl_pathc; ++i)
printf("%s\n", g.gl_pathv[i]);
}
int
main ()
{
print_glob("no flags", "x", 0);
print_glob("GLOB_NOCHECK", "x", GLOB_NOCHECK);
print_glob("no flags", "x*", 0);
print_glob("GLOB_NOCHECK", "x*", GLOB_NOCHECK);
} |
The RT System itself - Status changed from 'new' to 'open' |
From @epaThanks for the test program. But I think it is missing the fact that Please try this expanded test program: #include <stdio.h> void printf("\n(%s) %s:\n", description, pattern); if (glob(pattern, flags, NULL, &g)) printf("%d results returned\n", g.gl_pathc); int -- |
From @epaPlease could I ask the perl5-porters to have another look at this bug? |
As this bug was originally filed against an older perl version, I checked it with a somewhat newer one. Using 5.26.3 I can still reproduce the same behaviour:
and the
So I believe the behaviour is still inconsistent with the documentation (which at least implies that if The C test program I suggested
produces these results on Linux 4.18 with glibc 2.28:
Note the first case, where the pattern did not match, |
Migrated from rt.perl.org#125173 (status was 'open')
Searchable as RT125173$
The text was updated successfully, but these errors were encountered: