diff options
Diffstat (limited to 'tests/libsqfs/abi.c')
-rw-r--r-- | tests/libsqfs/abi.c | 22 |
1 files changed, 22 insertions, 0 deletions
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; +} |