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