From: Alan T. DeKok Date: Tue, 18 Oct 2022 13:57:49 +0000 (-0400) Subject: only NDEBUG X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5346d48a873b493f0b4ffa3ac52c6dba93f00ffd;p=thirdparty%2Ffreeradius-server.git only NDEBUG --- diff --git a/src/bin/unit_test_module.c b/src/bin/unit_test_module.c index c39dff71d66..8acee68cfd0 100644 --- a/src/bin/unit_test_module.c +++ b/src/bin/unit_test_module.c @@ -980,6 +980,7 @@ int main(int argc, char *argv[]) for (i = 0; i < count; i++) { request = request_clone(cached, i, server_cs); +#ifndef NDEBUG /* * Artificially limit the number of instructions which are run. */ @@ -991,6 +992,7 @@ int main(int argc, char *argv[]) } request->ins_count = 0; } +#endif unlang_interpret_synchronous(el, request); talloc_free(request);