test_slow.c 571 B

1234567891011121314151617181920212223242526
  1. /* Copyright (c) 2001-2004, Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2017, 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. struct testgroup_t testgroups[] = {
  17. { "slow/crypto/", slow_crypto_tests },
  18. { "slow/util/", slow_util_tests },
  19. END_OF_GROUPS
  20. };