diff options
Diffstat (limited to 'src/test/test_slow.c')
-rw-r--r-- | src/test/test_slow.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/test_slow.c b/src/test/test_slow.c new file mode 100644 index 0000000000..7c9f0b1cc2 --- /dev/null +++ b/src/test/test_slow.c @@ -0,0 +1,26 @@ +/* Copyright (c) 2001-2004, Roger Dingledine. + * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. + * Copyright (c) 2007-2016, The Tor Project, Inc. */ +/* See LICENSE for licensing information */ + +/** + * \file test_slow.c + * \brief Slower unit tests for many pieces of the lower level Tor modules. + **/ + +#include "orconfig.h" + +#include <stdio.h> +#ifdef HAVE_FCNTL_H +#include <fcntl.h> +#endif + +#include "or.h" +#include "test.h" + +struct testgroup_t testgroups[] = { + { "slow/crypto/", slow_crypto_tests }, + { "slow/util/", slow_util_tests }, + END_OF_GROUPS +}; + |