From b950412ca3a91aa37349cf51ebe98cc84767d448 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Fri, 5 Mar 2021 15:53:21 +0100 Subject: Cleanup: add some structure to the test directory Signed-off-by: David Oberhollenzer --- tests/libsqfs/Makemodule.am | 5 +++++ tests/libsqfs/abi.c | 22 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 tests/libsqfs/Makemodule.am create mode 100644 tests/libsqfs/abi.c (limited to 'tests/libsqfs') diff --git a/tests/libsqfs/Makemodule.am b/tests/libsqfs/Makemodule.am new file mode 100644 index 0000000..8ca38b1 --- /dev/null +++ b/tests/libsqfs/Makemodule.am @@ -0,0 +1,5 @@ +test_abi_SOURCES = tests/libsqfs/abi.c tests/test.h +test_abi_LDADD = libsquashfs.la + +check_PROGRAMS += test_abi +TESTS += test_abi diff --git a/tests/libsqfs/abi.c b/tests/libsqfs/abi.c new file mode 100644 index 0000000..ea0049d --- /dev/null +++ b/tests/libsqfs/abi.c @@ -0,0 +1,22 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * abi.c + * + * Copyright (C) 2019 David Oberhollenzer + */ +#include "config.h" + +#include "sqfs/compressor.h" +#include "../test.h" + +int main(void) +{ + sqfs_compressor_config_t cfg; + + TEST_EQUAL_UI(sizeof(cfg.opt.gzip), sizeof(cfg.opt)); + TEST_EQUAL_UI(sizeof(cfg.opt.lzo), sizeof(cfg.opt)); + TEST_EQUAL_UI(sizeof(cfg.opt.xz), sizeof(cfg.opt)); + TEST_EQUAL_UI(sizeof(cfg.opt.padd0), sizeof(cfg.opt)); + + return EXIT_SUCCESS; +} -- cgit v1.2.3