ClamAV is an open source (GPLv2) anti-virus toolkit.
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.
 
 
 
 
 
 
clamav/unit_tests/check_clamav_skip.c

10 lines
254 B

#include <stdio.h>
int main(int argc, char **argv)
{
(void)argc;
(void)argv;
puts("\n*** Unit tests disabled in this build\n*** Use ./configure --enable-check to enable them\n");
/* tell automake the test was skipped */
return 77;
}