mirror of https://github.com/Cisco-Talos/clamav
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.
21 lines
552 B
21 lines
552 B
#ifndef CHECKS_H
|
|
#define CHECKS_H
|
|
|
|
Suite *test_jsnorm_suite(void);
|
|
Suite *test_str_suite(void);
|
|
Suite *test_regex_suite(void);
|
|
Suite *test_disasm_suite(void);
|
|
Suite *test_uniq_suite(void);
|
|
Suite *test_matchers_suite(void);
|
|
Suite *test_htmlnorm_suite(void);
|
|
Suite *test_bytecode_suite(void);
|
|
void errmsg_expected(void);
|
|
int open_testfile(const char *name, int flags);
|
|
void diff_files(int fd, int reffd);
|
|
void diff_file_mem(int fd, const char *ref, size_t len);
|
|
|
|
extern struct cli_dconf *dconf;
|
|
void dconf_setup(void);
|
|
void dconf_teardown(void);
|
|
|
|
#endif
|
|
|