]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/libimcv/imcv_tests.c
android: Remove AndroidX legacy support
[thirdparty/strongswan.git] / src / libimcv / imcv_tests.c
CommitLineData
4f5b435f
AS
1/*
2 * Copyright (C) 2014 Andreas Steffen
19ef2aec
TB
3 *
4 * Copyright (C) secunet Security Networks AG
4f5b435f
AS
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 */
16
17#include <test_runner.h>
18
19#include <library.h>
20
21/* declare test suite constructors */
22#define TEST_SUITE(x) test_suite_t* x();
23#include "imcv_tests.h"
24#undef TEST_SUITE
25
26static test_configuration_t tests[] = {
27#define TEST_SUITE(x) \
28 { .suite = x, },
29#include "imcv_tests.h"
30 { .suite = NULL, }
31};
32
33static bool test_runner_init(bool init)
34{
35 if (!init)
36 {
37 lib->processor->set_threads(lib->processor, 0);
38 lib->processor->cancel(lib->processor);
39 }
40 return TRUE;
41}
42
43int main(int argc, char *argv[])
44{
45 return test_runner_run("libimcv", tests, test_runner_init);
46}