|
Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0 |
|
| #
d0b2dbfa |
| 16-Aug-2023 |
Warner Losh <[email protected]> |
Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
|
Revision tags: release/13.2.0 |
|
| #
69d94f4c |
| 02-Feb-2023 |
Dag-Erling Smørgrav <[email protected]> |
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
|
|
Revision tags: release/12.4.0 |
|
| #
c387c230 |
| 15-Sep-2022 |
Mitchell Horne <[email protected]> |
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
|
|
Revision tags: release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0 |
|
| #
d679c719 |
| 06-Jan-2020 |
Kyle Evans <[email protected]> |
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 ...
|
|
Revision tags: release/12.1.0 |
|
| #
92a8983b |
| 22-Aug-2019 |
Kyle Evans <[email protected]> |
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 ...
|
|
Revision tags: release/11.3.0 |
|
| #
93fecd02 |
| 25-May-2019 |
Alan Somers <[email protected]> |
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 <[email protected]> |
fusefs: adapt the tests to the fuse => fusefs rename
Sponsored by: The FreeBSD Foundation
|
| #
44154e68 |
| 01-Mar-2019 |
Alan Somers <[email protected]> |
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 ...
|
|
Revision tags: release/12.0.0, release/11.2.0, release/10.4.0, release/11.1.0 |
|
| #
669c2535 |
| 21-Oct-2016 |
Enji Cooper <[email protected]> |
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
|