Skip to content
Snippets Groups Projects
Commit b0e4df78 authored by Sebastien Ponce's avatar Sebastien Ponce
Browse files

Inverted the default for SKIP_UNIT_TESTS to 1 so that rpms can be compiled....

Inverted the default for SKIP_UNIT_TESTS to 1 so that rpms can be compiled. Currently some tests are failing under koji.
parent 9d45ae9b
No related branches found
No related tags found
No related merge requests found
......@@ -70,9 +70,9 @@ endif (NOT DEFINED COMPILE_SERVER)
# Generate the compilation variables, if needed
if (NOT DEFINED SKIP_UNIT_TESTS)
message (STATUS "Setting SKIP_UNIT_TESTS to the value of 0")
message (STATUS "Override with -DSKIP_UNIT_TESTS:STRING=1")
set(SKIP_UNIT_TESTS 0)
message (STATUS "Setting SKIP_UNIT_TESTS to the value of 1")
message (STATUS "Override with -DSKIP_UNIT_TESTS:STRING=0")
set(SKIP_UNIT_TESTS 1)
else (NOT DEFINED SKIP_UNIT_TESTS)
message (STATUS "Already set: SKIP_UNIT_TESTS=${SKIP_UNIT_TESTS}")
endif (NOT DEFINED SKIP_UNIT_TESTS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment