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:
Diffstat (limited to 'tests/performance/tests/animation.py')
-rw-r--r--tests/performance/tests/animation.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/performance/tests/animation.py b/tests/performance/tests/animation.py
new file mode 100644
index 00000000000..de3b8817820
--- /dev/null
+++ b/tests/performance/tests/animation.py
@@ -0,0 +1,38 @@
+# Apache License, Version 2.0
+
+import api
+import os
+
+def _run(args):
+ import bpy
+ import time
+
+ start_time = time.time()
+
+ scene = bpy.context.scene
+ for i in range(scene.frame_start, scene.frame_end):
+ scene.frame_set(scene.frame_start)
+
+ elapsed_time = time.time() - start_time
+
+ result = {'time': elapsed_time}
+ return result
+
+class AnimationTest(api.Test):
+ def __init__(self, filepath):
+ self.filepath = filepath
+
+ def name(self):
+ return self.filepath.stem
+
+ def category(self):
+ return "animation"
+
+ def run(self, env, device_id):
+ args = {}
+ result, _ = env.run_in_blender(_run, args)
+ return result
+
+def generate(env):
+ filepaths = env.find_blend_files('animation')
+ return [AnimationTest(filepath) for filepath in filepaths]