mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-06-10 17:33:17 -04:00
My mingw compiler/headers (mingw-w64 10.0.0 on macOS) seem to be more pendantic than the one that comes with Ubuntu 22.04 (github actions) or any of the other platforms including msvc/normal windows header. Signed-off-by: Arne Schwabe <arne@rfc2549.org> Acked-by: Selva Nair <selva.nair@gmail.com> Message-Id: <20230208001819.244694-5-arne@rfc2549.org> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg26182.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
60 lines
1,001 B
C
60 lines
1,001 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <setjmp.h>
|
|
#include <stdint.h>
|
|
#include <cmocka.h>
|
|
|
|
static int
|
|
setup(void **state)
|
|
{
|
|
int *answer = malloc(sizeof(int));
|
|
|
|
*answer = 42;
|
|
*state = answer;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
teardown(void **state)
|
|
{
|
|
free(*state);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
null_test_success(void **state)
|
|
{
|
|
(void) state;
|
|
}
|
|
|
|
static void
|
|
int_test_success(void **state)
|
|
{
|
|
int *answer = *state;
|
|
assert_int_equal(*answer, 42);
|
|
}
|
|
|
|
__attribute__((unused))
|
|
static void
|
|
failing_test(void **state)
|
|
{
|
|
/* This tests fails to test that make check fails */
|
|
assert_int_equal(0, 42);
|
|
}
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
const struct CMUnitTest tests[] = {
|
|
cmocka_unit_test(null_test_success),
|
|
cmocka_unit_test_setup_teardown(int_test_success, setup, teardown),
|
|
/* cmocka_unit_test(failing_test), */
|
|
};
|
|
|
|
return cmocka_run_group_tests_name("success_test", tests, NULL, NULL);
|
|
}
|