aboutsummaryrefslogtreecommitdiff
path: root/tests/abi.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/abi.c')
-rw-r--r--tests/abi.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/abi.c b/tests/abi.c
deleted file mode 100644
index 8ae2220..0000000
--- a/tests/abi.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* 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;
-}