test_slow.c (726B)
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 */ 5 6 /** 7 * \file test_slow.c 8 * \brief Slower unit tests for many pieces of the lower level Tor modules. 9 **/ 10 11 #include "orconfig.h" 12 13 #include <stdio.h> 14 #ifdef HAVE_FCNTL_H 15 #include <fcntl.h> 16 #endif 17 18 #include "core/or/or.h" 19 #include "test/test.h" 20 21 struct testgroup_t testgroups[] = { 22 { "slow/crypto/", slow_crypto_tests }, 23 { "slow/process/", slow_process_tests }, 24 { "slow/hs_pow/", slow_hs_pow_tests }, 25 { "slow/prob_distr/", slow_stochastic_prob_distr_tests }, 26 { "slow/ptr/", slow_ptr_tests }, 27 END_OF_GROUPS 28 };