blob: 8ae2220eb416705594eec09342f0a69e9a0b7e08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}
|