From 1fb18f4a9ef2bbbc6e7c774fa064808a3952bb3f Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 6 Oct 2019 19:04:16 +0200 Subject: tests: filter leaked fds by prefix When running $ go test ./tests/matrix/ in isolation, it failed like this: fd leak? before, after: [0r=/dev/null 3w=/dev/null 5r=/proc/8078/fd (hidden:4)] [0r=/dev/null 3w=/dev/null 5w=/tmp/go-build366655199/b001/testlog.txt 7r=/proc/8078/fd (hidden:4)] Filter by prefix to get rid of this spurious test failure. --- tests/test_helpers/mount_unmount.go | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'tests/test_helpers') diff --git a/tests/test_helpers/mount_unmount.go b/tests/test_helpers/mount_unmount.go index 453ea20..7b5dafa 100644 --- a/tests/test_helpers/mount_unmount.go +++ b/tests/test_helpers/mount_unmount.go @@ -91,7 +91,7 @@ func Mount(c string, p string, showOutput bool, extraArgs ...string) error { } // Save PID and open FDs - MountInfo[p] = mountInfo{pid, ListFds(pid)} + MountInfo[p] = mountInfo{pid, ListFds(pid, "")} return nil } @@ -160,13 +160,13 @@ func UnmountErr(dir string) (err error) { // when testing "-ctlsock" is as well. Wait a little and // hope that all close commands get through to the gocryptfs // process. - fdsNow = ListFds(pid) + fdsNow = ListFds(pid, "") if len(fdsNow) <= len(fds)+maxCacheFds { break } fmt.Printf("UnmountErr: fdsOld=%d fdsNow=%d, retrying\n", len(fds), len(fdsNow)) time.Sleep(10 * time.Millisecond) - fdsNow = ListFds(pid) + fdsNow = ListFds(pid, "") } } cmd := exec.Command(UnmountScript, "-u", dir) @@ -187,8 +187,8 @@ func UnmountErr(dir string) (err error) { } // ListFds lists the open file descriptors for process "pid". Pass pid=0 for -// ourselves. -func ListFds(pid int) []string { +// ourselves. Pass a prefix to ignore all paths that do not start with "prefix". +func ListFds(pid int, prefix string) []string { // We need /proc to get the list of fds for other processes. Only exists // on Linux. if runtime.GOOS != "linux" && pid > 0 { @@ -211,7 +211,7 @@ func ListFds(pid int) []string { log.Panic(err) } var out []string - hidden := 0 + var filtered []string for _, n := range names { fdPath := dir + "/" + n fi, err := os.Lstat(fdPath) @@ -235,11 +235,15 @@ func ListFds(pid int) []string { // creates spurious test failures. Ignore all pipes. // Also get rid of the "eventpoll" fd that is always there and not // interesting. - hidden++ + filtered = append(filtered, target) + continue + } + if prefix != "" && !strings.HasPrefix(target, prefix) { + filtered = append(filtered, target) continue } out = append(out, n+"="+target) } - out = append(out, fmt.Sprintf("(hidden:%d)", hidden)) + out = append(out, fmt.Sprintf("(filtered: %s)", strings.Join(filtered, ", "))) return out } -- cgit v1.2.3