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
diff options
context:
space:
mode:
authorHoward Trickey <howard.trickey@gmail.com>2020-08-30 15:31:40 +0300
committerHoward Trickey <howard.trickey@gmail.com>2020-08-30 15:31:40 +0300
commit3699d6fe34e1ad3ac10876864728f030e5360a20 (patch)
tree3550d6c01a4bbb1355e05b086aaf43a887e98d02 /tests/python/modifiers.py
parentdee665b462f795c7927d55ebfa495e5531d82d60 (diff)
Re-enable modifer and bmesh_boolean tests.
These were disabled in the newboolean merge commit. This commit renables them, using the original 'FAST' solver so that the result objects need not change. A TODO to add more tests using the 'EXACT' solver, though most functionality there is now covered by unit gtests.
Diffstat (limited to 'tests/python/modifiers.py')
-rw-r--r--tests/python/modifiers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/python/modifiers.py b/tests/python/modifiers.py
index 5e032f658af..4bbcf226aba 100644
--- a/tests/python/modifiers.py
+++ b/tests/python/modifiers.py
@@ -46,7 +46,7 @@ def get_generate_modifiers_list(test_object_name, randomize=False):
generate_modifiers = [
ModifierSpec('array', 'ARRAY', {}),
ModifierSpec('bevel', 'BEVEL', {'width': 0.1}),
- ModifierSpec('boolean', 'BOOLEAN', {'object': boolean_test_object}),
+ ModifierSpec('boolean', 'BOOLEAN', {'object': boolean_test_object, 'solver': 'FAST'}),
ModifierSpec('build', 'BUILD', {'frame_start': 0, 'frame_duration': 1}),
ModifierSpec('decimate', 'DECIMATE', {}),
ModifierSpec('edge split', 'EDGE_SPLIT', {}),