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 842B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #ifndef RSPAMD_TESTS_H
  2. #define RSPAMD_TESTS_H
  3. /*
  4. * Here are described test functions for rspamd test suite
  5. */
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. /* URL parser test */
  10. void rspamd_url_test_func(void);
  11. /* Memory pools */
  12. void rspamd_mem_pool_test_func(void);
  13. /* Stat file */
  14. void rspamd_statfile_test_func(void);
  15. /* Radix test */
  16. void rspamd_radix_test_func(void);
  17. /* DNS resolving */
  18. void rspamd_dns_test_func(void);
  19. /* DKIM test */
  20. void rspamd_dkim_test_func(void);
  21. /* RRD test */
  22. void rspamd_rrd_test_func(void);
  23. void rspamd_upstream_test_func(void);
  24. void rspamd_shingles_test_func(void);
  25. void rspamd_http_test_func(void);
  26. void rspamd_lua_test_func(void);
  27. void rspamd_cryptobox_test_func(void);
  28. void rspamd_heap_test_func(void);
  29. void rspamd_lua_lua_pcall_vs_resume_test_func(void);
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33. #endif