diff options
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index bde3890b4..d07fdd0b0 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -6006,7 +6006,12 @@ void domainSearchUnitTest2() { @brief MAIN FUNCTION **/ int main(int argc, char **argv) { - int i, skip_unit_tests = 1; + int i; +#ifdef NDPI_EXTENDED_SANITY_CHECKS + int skip_unit_tests = 0; +#else + int skip_unit_tests = 1; +#endif #ifdef DEBUG_TRACE trace = fopen("/tmp/ndpiReader.log", "a"); |