From 259ebdd017255c6ab8bd456d7f654d589b13872b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 10 May 2019 13:29:43 +0200 Subject: Fix failing tests when Cycles is enabled The --env-system-scripts hack does not work with it, it can't find the cycles Python module then when importing add-ons. --- tests/python/CMakeLists.txt | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt index 076b0d958f1..b7f04a65dcd 100644 --- a/tests/python/CMakeLists.txt +++ b/tests/python/CMakeLists.txt @@ -15,8 +15,6 @@ # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # ***** END GPL LICENSE BLOCK ***** -# --env-system-scripts allows to run without the install target. - # Use '--write-blend=/tmp/test.blend' to view output # Some tests are interesting but take too long to run @@ -35,12 +33,10 @@ execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory ${TEST_OUT_DIR}) #~ endif() # all calls to blender use this -if(APPLE) - if(${CMAKE_GENERATOR} MATCHES "Xcode") - set(TEST_BLENDER_EXE_PARAMS --background -noaudio --factory-startup) - else() - set(TEST_BLENDER_EXE_PARAMS --background -noaudio --factory-startup --env-system-scripts ${CMAKE_SOURCE_DIR}/release/scripts) - endif() +# --env-system-scripts allows to run without the install target, but does +# not work for all configurations. +if(WITH_CYCLES OR (APPLE AND (${CMAKE_GENERATOR} MATCHES "Xcode"))) + set(TEST_BLENDER_EXE_PARAMS --background -noaudio --factory-startup) else() set(TEST_BLENDER_EXE_PARAMS --background -noaudio --factory-startup --env-system-scripts ${CMAKE_SOURCE_DIR}/release/scripts) endif() -- cgit v1.2.3