Skip to content
Snippets Groups Projects
Commit cea12251 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Split crypto tests into a separate module.

parent 410f31e5
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ AM_CFLAGS = -I../or
# This seems to matter nowhere but on windows, but I assure you that it
# matters a lot there, and is quite hard to debug if you forget to do it.
test_SOURCES = test_data.c test.c tinytest.c
test_SOURCES = test_data.c test.c test_crypto.c tinytest.c
test_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \
@TOR_LDFLAGS_libevent@
......
This diff is collapsed.
......@@ -8,7 +8,7 @@
/**
* \file test.h
* \brief Macros used by unit tests.
* \brief Macros and functions used by unit tests.
*/
#include "compat.h"
......@@ -62,5 +62,11 @@
#define test_memeq_hex(expr1, hex) test_mem_op_hex(expr1, ==, hex)
const char *get_fname(const char *name);
crypto_pk_env_t *pk_generate(int idx);
void legacy_test_helper(void *data);
extern const struct testcase_setup_t legacy_setup;
#endif
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment