From a63fc71a55038f49671eb56d0ade99a48ad8d7ab Mon Sep 17 00:00:00 2001 From: CismonX Date: Tue, 19 Aug 2025 08:05:45 +0800 Subject: 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 --- test/test_ctests.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/test_ctests.py') 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)) -- cgit v1.2.3