mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-11-08 03:51:01 +00:00
8 lines
221 B
C
8 lines
221 B
C
|
|
#include <stdio.h>
|
||
|
|
int main(int argc, char **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;
|
||
|
|
}
|