diff options
author | CismonX <admin@cismon.net> | 2025-08-19 08:05:45 +0800 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-08-19 16:21:24 +0200 |
commit | a63fc71a55038f49671eb56d0ade99a48ad8d7ab (patch) | |
tree | fdfda549997183bcc9b8cddd90b30bdeffe0d230 /test/test_ctests.py | |
parent | 42b9b3bbb71d38be6a5670bbd0948cf406c1573c (diff) | |
download | libfuse-a63fc71a55038f49671eb56d0ade99a48ad8d7ab.tar.gz |
tests: move struct size assertions into a test
These checks are meant for libfuse maintainers only,
and should not be exposed to users.
Signed-off-by: CismonX <admin@cismon.net>
Diffstat (limited to 'test/test_ctests.py')
-rw-r--r-- | test/test_ctests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_ctests.py b/test/test_ctests.py index ae5cc8f..b3863e0 100644 --- a/test/test_ctests.py +++ b/test/test_ctests.py @@ -20,6 +20,10 @@ import os.path pytestmark = fuse_test_marker() +def test_abi(): + cmdline = [ pjoin(basename, 'test', 'test_abi') ] + subprocess.check_call(cmdline) + @pytest.mark.skipif('FUSE_CAP_WRITEBACK_CACHE' not in fuse_caps, reason='not supported by running kernel') @pytest.mark.parametrize("writeback", (False, True)) |