| #
8fd4d1c0 |
| 19-Jun-2026 |
Mark Johnston <markj@FreeBSD.org> |
tests: Add pjdfstest integration
Use ATF to wrap the new reimplementation of pjdfstest that came out of GSOC 2022, now available in the ports tree as filesystems/pjdfstest.
So far I added tests for
tests: Add pjdfstest integration
Use ATF to wrap the new reimplementation of pjdfstest that came out of GSOC 2022, now available in the ports tree as filesystems/pjdfstest.
So far I added tests for UFS (with several different option combinations), tmpfs and ZFS, plus ZFS+nullfs. All of these create a memory disk, initialize the filesystem, and point the pjdfstest executable at it.
In the future it would be good to add tests for at least NFS and p9fs.
Reviewed by: asomers MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D56605
show more ...
|
| #
a678e87f |
| 17-Dec-2025 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
unionfs: Support renaming symbolic links
This adds support for renaming a symbolic link found on the lower fs, which necessitates copying it to the upper fs, as well as basic tests.
MFC after: 1 we
unionfs: Support renaming symbolic links
This adds support for renaming a symbolic link found on the lower fs, which necessitates copying it to the upper fs, as well as basic tests.
MFC after: 1 week Sponsored by: Klara, Inc. Sponsored by: NetApp, Inc. Reviewed by: olce, siderop1_netapp.com, jah Differential Revision: https://reviews.freebsd.org/D54229
show more ...
|
| #
e9ac4169 |
| 15-Jul-2024 |
Warner Losh <imp@FreeBSD.org> |
Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.
MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
|
| #
d0b2dbfa |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
| #
69d94f4c |
| 02-Feb-2023 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Add tarfs, a filesystem backed by tarballs.
Sponsored by: Juniper Networks, Inc. Sponsored by: Klara, Inc. Reviewed by: pauamma, imp Differential Revision: https://reviews.freebsd.org/D37753
|
| #
c387c230 |
| 15-Sep-2022 |
Mitchell Horne <mhorne@FreeBSD.org> |
tests/sys/fs: remove mips workaround
MIPS is gone, so we no longer require this check.
Reviewed by: imp, asomers Differential Revision: https://reviews.freebsd.org/D36566
|
| #
d679c719 |
| 06-Jan-2020 |
Kyle Evans <kevans@FreeBSD.org> |
Refine fusefs test workaround for mips+llvm
This re-enables building the googletest suite by default on mips and instead specifically doesn't build fusefs tests for mips+clang builds. clang will ea
Refine fusefs test workaround for mips+llvm
This re-enables building the googletest suite by default on mips and instead specifically doesn't build fusefs tests for mips+clang builds. clang will easily spent >= 1.5 hours compiling a single file due to a bug in optimization (see LLVM PR 43263), so turn these off for now while that's hashed out.
GCC builds are unaffected and build the fusefs tests as-is. Clang builds only happen by early adopters attempting to hash out the remaining issues.
The comment has been updated to reflect its new position and use less strong wording about imposing on people.
Discussed with: ngie, asomers Reviewed by: ngie
show more ...
|
| #
92a8983b |
| 22-Aug-2019 |
Kyle Evans <kevans@FreeBSD.org> |
Fix the build with WITHOUT_GOOGLETEST
Attempting to build the fusefs tests WITHOUT_GOOGLETEST will result in an error if the host system or sysroot doesn't already have googletest headers in /usr/in
Fix the build with WITHOUT_GOOGLETEST
Attempting to build the fusefs tests WITHOUT_GOOGLETEST will result in an error if the host system or sysroot doesn't already have googletest headers in /usr/include/private (e.g. host built/installed WITHOUT_GOOGLETEST, clean cross-buildworld WITHOUT_GOOGLETEST).
Reviewed by: asomers Differential Revision: https://reviews.freebsd.org/D21367
show more ...
|
| #
93fecd02 |
| 25-May-2019 |
Alan Somers <asomers@FreeBSD.org> |
fusefs: misc build fixes
* Only build the tests on platforms with C++14 support * Fix an undefined symbol error on lint builds * Remove an unused function: fiov_clear
Sponsored by: The FreeBSD Foun
fusefs: misc build fixes
* Only build the tests on platforms with C++14 support * Fix an undefined symbol error on lint builds * Remove an unused function: fiov_clear
Sponsored by: The FreeBSD Foundation
show more ...
|
| #
9821f1d3 |
| 21-Mar-2019 |
Alan Somers <asomers@FreeBSD.org> |
fusefs: adapt the tests to the fuse => fusefs rename
Sponsored by: The FreeBSD Foundation
|
| #
44154e68 |
| 02-Mar-2019 |
Alan Somers <asomers@FreeBSD.org> |
Begin a fuse(4) test suite
It only tests the kernel portion of fuse, not the userspace portion (which comes from sysutils/fusefs-libs). The kernel-userspace interface is de-facto standardized, and
Begin a fuse(4) test suite
It only tests the kernel portion of fuse, not the userspace portion (which comes from sysutils/fusefs-libs). The kernel-userspace interface is de-facto standardized, and this test suite seeks to validate FreeBSD's implementation.
It uses GoogleMock to substitute for a userspace daemon and validate the kernel's behavior in response to filesystem access. GoogleMock is convenient because it can validate the order, number, and arguments of each operation, and return canned responses.
But that also means that the test suite must use GoogleTest, since GoogleMock is incompatible with atf-c++ and atf.test.mk does not allow C++ programs to use atf-c.
This commit adds the first 10 test cases out of an estimated 130 total.
PR: 235775, 235773 Sponsored by: The FreeBSD Foundation
show more ...
|
| #
669c2535 |
| 21-Oct-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Integrate contrib/netbsd-tests/fs/tmpfs into the FreeBSD test suite as tests/sys/fs
These testcases exercise tmpfs support
MFC after: 2 weeks Sponsored by: Dell EMC Isilon
|