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:
authorBrecht Van Lommel <brecht@blender.org>2021-05-18 15:02:41 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-05-18 15:40:22 +0300
commitb1584775515b9830d277343db7a25701fd054578 (patch)
tree03439d9adbe365076ffba4b0add26c129fe02deb /tests
parent53376ec7fcd51d16027e56993e91ce472d7982b5 (diff)
Fix ocean modifier giving different result on Arm than x86
And re-enable the test on macOS Arm. Ref T78710
Diffstat (limited to 'tests')
-rw-r--r--tests/python/CMakeLists.txt19
1 files changed, 8 insertions, 11 deletions
diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt
index 4770a421ba9..92cebb7d274 100644
--- a/tests/python/CMakeLists.txt
+++ b/tests/python/CMakeLists.txt
@@ -240,17 +240,14 @@ add_blender_test(
--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()
+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()