diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 21:30:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 21:30:40 +0000 |
commit | 133a45c109da5310add55824db21af5239951f93 (patch) | |
tree | ba6ac4c0a950a0dda56451944315d66409923918 /test/tests.h | |
parent | Initial commit. (diff) | |
download | rspamd-133a45c109da5310add55824db21af5239951f93.tar.xz rspamd-133a45c109da5310add55824db21af5239951f93.zip |
Adding upstream version 3.8.1.upstream/3.8.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/tests.h')
-rw-r--r-- | test/tests.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/test/tests.h b/test/tests.h new file mode 100644 index 0000000..be37bbc --- /dev/null +++ b/test/tests.h @@ -0,0 +1,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 |