You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tests.h 714B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef RSPAMD_TESTS_H
  2. #define RSPAMD_TESTS_H
  3. /*
  4. * Here are described test functions for rspamd test suite
  5. */
  6. /* URL parser test */
  7. void rspamd_url_test_func (void);
  8. /* Memory pools */
  9. void rspamd_mem_pool_test_func (void);
  10. /* Expressions */
  11. void rspamd_expression_test_func (void);
  12. /* Fuzzy hashes */
  13. void rspamd_fuzzy_test_func (void);
  14. /* Stat file */
  15. void rspamd_statfile_test_func (void);
  16. /* Radix test */
  17. void rspamd_radix_test_func (void);
  18. /* DNS resolving */
  19. void rspamd_dns_test_func (void);
  20. /* Async IO */
  21. void rspamd_async_test_func (void);
  22. /* DKIM test */
  23. void rspamd_dkim_test_func (void);
  24. /* RRD test */
  25. void rspamd_rrd_test_func (void);
  26. void rspamd_upstream_test_func (void);
  27. #endif