From 7539267d370ae9a1b547008a937bd7f57bece541 Mon Sep 17 00:00:00 2001 From: Loïc Blot Date: Thu, 16 Apr 2020 20:43:49 +0200 Subject: Add an option to disable unittest build, & disable them on Docker build (#9677) --- src/main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index db020661a..82666e463 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -187,7 +187,13 @@ int main(int argc, char *argv[]) #ifndef __ANDROID__ // Run unit tests if (cmd_args.getFlag("run-unittests")) { +#if BUILD_UNITTESTS return run_tests(); +#else + errorstream << "Unittest support is not enabled in this binary. " + << "If you want to enable it, compile project with BUILD_UNITTESTS=1 flag." + << std::endl; +#endif } #endif -- cgit v1.2.3