aboutsummaryrefslogtreecommitdiff
path: root/support/support_fuse.c
AgeCommit message (Collapse)AuthorFilesLines
2025-01-01Update copyright dates with scripts/update-copyrightsPaul Eggert1-1/+1
2024-09-21support: Fix memory leaks in FUSE testsFlorian Weimer1-0/+1
The internal read buffer (used by all FUSE tests) was not freed. The support/tst-support_fuse test missed a deallocation.
2024-09-05support: Add FUSE-based file system test framework to support/Florian Weimer1-0/+705
This allows to monitor the exact file system operations performed by glibc and inject errors. Hurd does not have <sys/mount.h>. To get the sources to compile at least, the same approach as in support/test-container.c is used. Reviewed-by: DJ Delorie <dj@redhat.com>