diff options
author | George Kadianakis <desnacked@riseup.net> | 2017-05-02 16:36:59 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-07-07 11:12:26 -0400 |
commit | 173dd486e3648ff24a7814679ac6e60e1da7a16b (patch) | |
tree | 0af0202d599108b0baaef2e8036c475ed5c41263 /src/test/test_helpers.h | |
parent | dc3a2037f54bcef14b7021b847edd91d36bf4514 (diff) | |
download | tor-173dd486e3648ff24a7814679ac6e60e1da7a16b.tar.gz tor-173dd486e3648ff24a7814679ac6e60e1da7a16b.zip |
test: Add client-side unittests for e2e rend circuits.
Diffstat (limited to 'src/test/test_helpers.h')
-rw-r--r-- | src/test/test_helpers.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/test_helpers.h b/src/test/test_helpers.h index aa7aff111c..96a4b594eb 100644 --- a/src/test/test_helpers.h +++ b/src/test/test_helpers.h @@ -1,9 +1,11 @@ -/* Copyright (c) 2014-2017, The Tor Project, Inc. */ +/* Copyright (c) 2017, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_TEST_HELPERS_H #define TOR_TEST_HELPERS_H +#include "or.h" + const char *get_yesterday_date_str(void); circuit_t * dummy_origin_circuit_new(int num_cells); @@ -25,5 +27,5 @@ connection_t *test_conn_get_connection(uint8_t state, extern const char TEST_DESCRIPTORS[]; -#endif +#endif /* TOR_TEST_HELPERS_H */ |