blob: f3a93044b00e6e5087d1199f7d11e9c27950ef19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require Config; import Config;
if (not $Config{'d_readdir'}) {
print "1..0\n";
exit 0;
}
}
use DirHandle;
use Test::More tests => 5;
# Fetching the list of files in two different ways and expecting them
# to be the same is a race condition when tests are running in parallel.
# So go somewhere quieter.
my $chdir;
if ($ENV{PERL_CORE} && -d 'uni') {
chdir 'uni';
push @INC, '../../lib';
$chdir++;
};
$dot = DirHandle->new('.');
is(defined $dot, 1);
@a = sort <*>;
do { $first = $dot->read } while defined($first) && $first =~ /^\./;
ok(+(grep { $_ eq $first } @a));
@b = sort($first, (grep {/^[^.]/} $dot->read));
ok(+(join("\0", @a) eq join("\0", @b)));
$dot->rewind;
@c = sort grep {/^[^.]/} $dot->read;
cmp_ok(join("\0", @b), 'eq', join("\0", @c));
$dot->close;
$dot->rewind;
is(defined $dot->read, '');
if ($chdir) {
chdir "..";
}
|