aboutsummaryrefslogtreecommitdiff
path: root/tests/abi.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2021-03-05 15:53:21 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2021-03-06 22:08:36 +0100
commitb950412ca3a91aa37349cf51ebe98cc84767d448 (patch)
treee3bb062114d019984321a5a21b29818c88c36795 /tests/abi.c
parent3fc6bf24b5cc071fc323f08ece541e37578f6369 (diff)
Cleanup: add some structure to the test directory
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
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;
-}