Skip to content

Commit f69d32a

Browse files
committed
unix: in TestDirent, make as many ReadDirent calls as are needed
This CL just port CL 376334 from main repo with minor modification. Fixes golang/go#65015 Change-Id: I327d33bde39a2fcb818e28bcb7ff524ca19c4a38 Reviewed-on: https://go-review.googlesource.com/c/sys/+/554875 Reviewed-by: Bryan Mills <[email protected]> Run-TryBot: M Zhuo <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent 0d9df52 commit f69d32a

File tree

1 file changed

+26
-14
lines changed

1 file changed

+26
-14
lines changed

unix/dirent_test.go

+26-14
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323

2424
func TestDirent(t *testing.T) {
2525
const (
26-
direntBufSize = 2048
26+
direntBufSize = 2048 // arbitrary? See https://go.dev/issue/37323.
2727
filenameMinSize = 11
2828
)
2929

@@ -38,26 +38,38 @@ func TestDirent(t *testing.T) {
3838
}
3939
}
4040

41-
buf := bytes.Repeat([]byte("DEADBEAF"), direntBufSize/8)
41+
names := make([]string, 0, 10)
42+
4243
fd, err := unix.Open(d, unix.O_RDONLY, 0)
4344
if err != nil {
4445
t.Fatalf("Open: %v", err)
4546
}
4647
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]
5248

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)
5972
}
60-
buf = buf[bc:]
6173
}
6274

6375
sort.Strings(names)

0 commit comments

Comments
 (0)