File: tests.h

package info (click to toggle)
rspamd 3.13.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,056 kB
  • sloc: ansic: 243,746; cpp: 105,657; javascript: 29,539; asm: 2,512; perl: 2,440; pascal: 1,625; python: 1,274; sql: 313; sh: 281; makefile: 140; xml: 74
file content (51 lines) | stat: -rw-r--r-- 842 bytes parent folder | download | duplicates (2)
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