diff options
Diffstat (limited to 'tests/libsqfs')
-rw-r--r-- | tests/libsqfs/Makemodule.am | 5 | ||||
-rw-r--r-- | tests/libsqfs/abi.c | 22 |
2 files changed, 27 insertions, 0 deletions
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 <goliath@infraroot.at> + */ +#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; +} |