mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-02-14 08:13:09 -05:00
Done with pre-commit run -a, so the version defined in pre-commit config is used. This also changes the Github workflow so that there is no commit that fails GHA. Change-Id: I2566ad493629e1f5fdfa6f6483b8973463404e3e Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com> Acked-by: Gert Doering <gert@greenie.muc.de> Message-Id: <20250804151853.10565-1-gert@greenie.muc.de> URL: https://gerrit.openvpn.net/c/openvpn/+/791 Signed-off-by: Gert Doering <gert@greenie.muc.de>
59 lines
1,007 B
C
59 lines
1,007 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);
|
|
}
|