~ubuntu-branches/ubuntu/raring/clamav/raring

« back to all changes in this revision

Viewing changes to unit_tests/checks.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Gran
  • Date: 2008-09-05 17:25:34 UTC
  • mfrom: (0.35.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080905172534-yi3f8fkye1o7u1r3
* New upstream version (closes: #497662, #497773)
  - lots of new options for clamd.conf
  - fixes CVEs CVE-2008-3912, CVE-2008-3913, CVE-2008-3914, and
    CVE-2008-1389
* No longer supports --unzip option, so typo is gone (closes: #496276)
* Translations:
  - sv (thanks Martin Bagge <brother@bsnet.se>) (closes: #491760)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CHECKS_H
 
2
#define CHECKS_H
 
3
 
 
4
#if CHECK_MAJOR_VERSION > 0 || ( CHECK_MINOR_VERSION > 9 || ( CHECK_MINOR_VERSION == 9 && CHECK_MICRO_VERSION > 3))
 
5
#define CHECK_HAVE_LOOPS
 
6
#endif
 
7
Suite *test_jsnorm_suite(void);
 
8
Suite *test_str_suite(void);
 
9
Suite *test_regex_suite(void);
 
10
Suite *test_disasm_suite(void);
 
11
Suite *test_uniq_suite(void);
 
12
Suite *test_matchers_suite(void);
 
13
void errmsg_expected(void);
 
14
int open_testfile(const char *name);
 
15
#endif