test_slow.c 662 B

1234567891011121314151617181920212223242526272829
  1. /* Copyright (c) 2001-2004, Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2015, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file test_slow.c
  7. * \brief Slower unit tests for many pieces of the lower level Tor modules.
  8. **/
  9. #include "orconfig.h"
  10. #include <stdio.h>
  11. #ifdef HAVE_FCNTL_H
  12. #include <fcntl.h>
  13. #endif
  14. #include "or.h"
  15. #include "test.h"
  16. extern struct testcase_t slow_crypto_tests[];
  17. extern struct testcase_t slow_util_tests[];
  18. struct testgroup_t testgroups[] = {
  19. { "slow/crypto/", slow_crypto_tests },
  20. { "slow/util/", slow_util_tests },
  21. END_OF_GROUPS
  22. };