@@ -23,7 +23,7 @@ import (
23
23
24
24
func TestDirent (t * testing.T ) {
25
25
const (
26
- direntBufSize = 2048
26
+ direntBufSize = 2048 // arbitrary? See https://go.dev/issue/37323.
27
27
filenameMinSize = 11
28
28
)
29
29
@@ -38,26 +38,38 @@ func TestDirent(t *testing.T) {
38
38
}
39
39
}
40
40
41
- buf := bytes .Repeat ([]byte ("DEADBEAF" ), direntBufSize / 8 )
41
+ names := make ([]string , 0 , 10 )
42
+
42
43
fd , err := unix .Open (d , unix .O_RDONLY , 0 )
43
44
if err != nil {
44
45
t .Fatalf ("Open: %v" , err )
45
46
}
46
47
defer unix .Close (fd )
47
- n , err := unix .ReadDirent (fd , buf )
48
- if err != nil {
49
- t .Fatalf ("ReadDirent: %v" , err )
50
- }
51
- buf = buf [:n ]
52
48
53
- names := make ([]string , 0 , 10 )
54
- for len (buf ) > 0 {
55
- var bc int
56
- bc , _ , names = unix .ParseDirent (buf , - 1 , names )
57
- if bc == 0 && len (buf ) > 0 {
58
- t .Fatal ("no progress" )
49
+ buf := bytes .Repeat ([]byte {0xCD }, direntBufSize )
50
+ for {
51
+ n , err := unix .ReadDirent (fd , buf )
52
+ if err == unix .EINVAL {
53
+ // On linux, 'man getdents64' says that EINVAL indicates result buffer is too small.
54
+ // Try a bigger buffer.
55
+ t .Logf ("ReadDirent: %v; retrying with larger buffer" , err )
56
+ buf = bytes .Repeat ([]byte {0xCD }, len (buf )* 2 )
57
+ continue
58
+ }
59
+ if err != nil {
60
+ t .Fatalf ("ReadDirent: %v" , err )
61
+ }
62
+ t .Logf ("ReadDirent: read %d bytes" , n )
63
+ if n == 0 {
64
+ break
65
+ }
66
+
67
+ var consumed , count int
68
+ consumed , count , names = unix .ParseDirent (buf [:n ], - 1 , names )
69
+ t .Logf ("ParseDirent: %d new name(s)" , count )
70
+ if consumed != n {
71
+ t .Fatalf ("ParseDirent: consumed %d bytes; expected %d" , consumed , n )
59
72
}
60
- buf = buf [bc :]
61
73
}
62
74
63
75
sort .Strings (names )
0 commit comments