2023-08-16 00:20:26 +10:00
|
|
|
# SPDX-FileCopyrightText: 2018-2023 Blender Authors
|
2023-06-14 22:49:59 +10:00
|
|
|
#
|
2022-02-11 09:07:11 +11:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2018-02-24 13:11:30 +01:00
|
|
|
|
|
|
|
|
# --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
|
|
|
|
|
# and don't give deterministic results
|
|
|
|
|
set(USE_EXPERIMENTAL_TESTS FALSE)
|
|
|
|
|
|
2024-02-22 13:50:55 +01:00
|
|
|
set(TEST_SRC_DIR ${CMAKE_SOURCE_DIR}/tests/data)
|
2018-02-24 13:11:30 +01:00
|
|
|
set(TEST_OUT_DIR ${CMAKE_BINARY_DIR}/tests)
|
|
|
|
|
|
|
|
|
|
# ugh, any better way to do this on testing only?
|
|
|
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory ${TEST_OUT_DIR})
|
|
|
|
|
|
2019-10-29 01:32:33 +11:00
|
|
|
# if(NOT IS_DIRECTORY ${TEST_SRC_DIR})
|
|
|
|
|
# message(FATAL_ERROR "CMake test directory not found!")
|
|
|
|
|
# endif()
|
2018-02-24 13:11:30 +01:00
|
|
|
|
|
|
|
|
# all calls to blender use this
|
|
|
|
|
if(APPLE)
|
|
|
|
|
if(${CMAKE_GENERATOR} MATCHES "Xcode")
|
2024-02-14 00:13:38 +11:00
|
|
|
set(TEST_BLENDER_EXE_PARAMS --background --factory-startup --debug-memory --debug-exit-on-error)
|
2018-02-24 13:11:30 +01:00
|
|
|
else()
|
2024-02-14 00:13:38 +11:00
|
|
|
set(TEST_BLENDER_EXE_PARAMS --background --factory-startup --debug-memory --debug-exit-on-error --env-system-scripts ${CMAKE_SOURCE_DIR}/scripts)
|
2018-02-24 13:11:30 +01:00
|
|
|
endif()
|
|
|
|
|
else()
|
2024-02-14 00:13:38 +11:00
|
|
|
set(TEST_BLENDER_EXE_PARAMS --background --factory-startup --debug-memory --debug-exit-on-error --env-system-scripts ${CMAKE_SOURCE_DIR}/scripts)
|
2018-02-24 13:11:30 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
# for testing with valgrind prefix: valgrind --track-origins=yes --error-limit=no
|
|
|
|
|
# set(TEST_BLENDER_EXE_BARE ${TEST_BLENDER_EXE})
|
|
|
|
|
# set(TEST_BLENDER_EXE ${TEST_BLENDER_EXE} ${TEST_BLENDER_EXE_PARAMS} )
|
|
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
# GENERAL PYTHON CORRECTNESS TESTS
|
2020-02-15 09:57:56 +11:00
|
|
|
macro(COLLADA_TEST module test_name blend_file)
|
2018-02-24 13:11:30 +01:00
|
|
|
add_test(
|
2023-09-23 20:22:19 +10:00
|
|
|
NAME bf_io_collada_${module}_${test_name}
|
2018-02-27 20:41:34 +01:00
|
|
|
COMMAND "$<TARGET_FILE:blender>" ${TEST_BLENDER_EXE_PARAMS} ${TEST_SRC_DIR}/collada/${module}/${blend_file}
|
|
|
|
|
--python ${CMAKE_CURRENT_LIST_DIR}/${module}/test_${module}_${test_name}.py --
|
2018-02-24 13:11:30 +01:00
|
|
|
--testdir ${TEST_SRC_DIR}/collada/${module}
|
|
|
|
|
)
|
|
|
|
|
endmacro()
|
|
|
|
|
|
2018-04-16 09:55:05 +02:00
|
|
|
# Tests are disabled because they only work on Windows
|
|
|
|
|
# Tests will be redone completely to work reliable
|
2019-10-29 01:32:33 +11:00
|
|
|
#
|
2022-09-23 14:33:44 +10:00
|
|
|
# collada_test(mesh simple mesh_simple.blend)
|
|
|
|
|
# collada_test(animation simple suzannes_parent_inverse.blend)
|