Symbol: test_fixture
test/crypto/cryptoapi/cryptoapi_test.c
14
struct test_fixture;
test/crypto/cryptoapi/cryptoapi_test.c
150
void free_test_fixture(struct test_fixture *fixture)
test/crypto/cryptoapi/cryptoapi_test.c
29
struct test_fixture *next;
test/crypto/cryptoapi/cryptoapi_test.c
299
struct test_fixture *read_fixtures_from_file(const char *filename)
test/crypto/cryptoapi/cryptoapi_test.c
303
struct test_fixture *head = NULL;
test/crypto/cryptoapi/cryptoapi_test.c
304
struct test_fixture *prev = NULL;
test/crypto/cryptoapi/cryptoapi_test.c
305
struct test_fixture *fixture = NULL;
test/crypto/cryptoapi/cryptoapi_test.c
321
fixture = malloc(sizeof(struct test_fixture));
test/crypto/cryptoapi/cryptoapi_test.c
36
print_test_fixture(FILE *out, struct test_fixture *fixture, uint8_t *result);
test/crypto/cryptoapi/cryptoapi_test.c
38
read_test_fixture(char *line, int lineno, struct test_fixture *fixture);
test/crypto/cryptoapi/cryptoapi_test.c
39
static struct test_fixture *read_fixtures_from_file(const char *filename);
test/crypto/cryptoapi/cryptoapi_test.c
393
struct test_fixture *fixtures =
test/crypto/cryptoapi/cryptoapi_test.c
41
static void free_test_fixture(struct test_fixture *fixture);
test/crypto/cryptoapi/cryptoapi_test.c
421
for (struct test_fixture *fixture = fixtures; fixture;
test/crypto/cryptoapi/cryptoapi_test.c
491
struct test_fixture *next = fixtures->next;
test/crypto/cryptoapi/cryptoapi_test.c
70
FILE *out, struct test_fixture *fixture, uint8_t *result)
test/crypto/cryptoapi/cryptoapi_test.c
85
int read_test_fixture(char *line, int lineno, struct test_fixture *fixture)