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/cycles.py')
-rw-r--r--tests/performance/tests/cycles.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/performance/tests/cycles.py b/tests/performance/tests/cycles.py
new file mode 100644
index 00000000000..c70efe46c6d
--- /dev/null
+++ b/tests/performance/tests/cycles.py
@@ -0,0 +1,33 @@
+import api
+import os
+
+def _run(args):
+ import bpy
+ import time
+
+ scene = bpy.context.scene
+ scene.render.engine = 'CYCLES'
+ scene.cycles.samples = 4
+
+ start_time = time.time()
+ bpy.ops.render.render()
+ elapsed_time = time.time() - start_time
+ result = {'time': elapsed_time}
+ return result
+
+class CyclesTest(api.Test):
+ def __init__(self, filepath):
+ self.filepath = filepath
+
+ def name(self):
+ return 'cycles_' + self.filepath.stem
+
+ def use_device(self):
+ return True
+
+ def run(self, env):
+ return env.run_in_blender(_run, {}, blendfile=self.filepath)
+
+def generate(env):
+ filepaths = env.find_blend_files('cycles')
+ return [CyclesTest(filepath) for filepath in filepaths]