Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2021-05-18 13:48:35 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2021-05-18 13:48:35 +0300
commit53376ec7fcd51d16027e56993e91ce472d7982b5 (patch)
treee93ec77fd7d6a4d602020c96395af148ed71f480 /tests
parentaa06be9148a3a75cf117454a8009d90bdc4541d9 (diff)
Tests: Disabled physics ocean test on macOS arm64
Test is failing and needs further investigation.
Diffstat (limited to 'tests')
-rw-r--r--tests/python/CMakeLists.txt19
1 files changed, 11 insertions, 8 deletions
diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt
index 92cebb7d274..4770a421ba9 100644
--- a/tests/python/CMakeLists.txt
+++ b/tests/python/CMakeLists.txt
@@ -240,14 +240,17 @@ add_blender_test(
--run-all-tests
)
-if(WITH_MOD_OCEANSIM)
- add_blender_test(
- physics_ocean
- ${TEST_SRC_DIR}/physics/ocean_test.blend
- --python ${TEST_PYTHON_DIR}/physics_ocean.py
- --
- --run-all-tests
- )
+# disabled on macOS arm64 until updated & working
+if(NOT (APPLE AND ("${CMAKE_OSX_ARCHITECTURES}" STREQUAL "arm64")))
+ if(WITH_MOD_OCEANSIM)
+ add_blender_test(
+ physics_ocean
+ ${TEST_SRC_DIR}/physics/ocean_test.blend
+ --python ${TEST_PYTHON_DIR}/physics_ocean.py
+ --
+ --run-all-tests
+ )
+ endif()
endif()