Update copyrights to 2021, using "make update-copyright"
[tor.git] / src / test / test_slow.c
blob5f42b431030dbf4967f35501a10b0bdd94b43dd4
1 /* Copyright (c) 2001-2004, Roger Dingledine.
2 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
3 * Copyright (c) 2007-2021, The Tor Project, Inc. */
4 /* See LICENSE for licensing information */
6 /**
7 * \file test_slow.c
8 * \brief Slower unit tests for many pieces of the lower level Tor modules.
9 **/
11 #include "orconfig.h"
13 #include <stdio.h>
14 #ifdef HAVE_FCNTL_H
15 #include <fcntl.h>
16 #endif
18 #include "core/or/or.h"
19 #include "test/test.h"
21 struct testgroup_t testgroups[] = {
22 { "slow/crypto/", slow_crypto_tests },
23 { "slow/process/", slow_process_tests },
24 { "slow/prob_distr/", slow_stochastic_prob_distr_tests },
25 { "slow/ptr/", slow_ptr_tests },
26 END_OF_GROUPS