[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [30877] branches/soc-2010-leifandersen/ tests/render: 1.

Leif Andersen leif.a.andersen at gmail.com
Thu Jul 29 17:37:12 CEST 2010


Revision: 30877
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=30877
Author:   leifandersen
Date:     2010-07-29 17:37:11 +0200 (Thu, 29 Jul 2010)

Log Message:
-----------
1.  Cleaned up a roge hashcode file from the render test.

2.  Set the animation frame skip up to 30 frames, the animation tests now run in ~5 minutes, I don't think I can cut any more without loosing valuable information.

Modified Paths:
--------------
    branches/soc-2010-leifandersen/tests/render/run.py

Removed Paths:
-------------
    branches/soc-2010-leifandersen/tests/render/hashcodes.txt

Deleted: branches/soc-2010-leifandersen/tests/render/hashcodes.txt
===================================================================
--- branches/soc-2010-leifandersen/tests/render/hashcodes.txt	2010-07-29 14:06:48 UTC (rev 30876)
+++ branches/soc-2010-leifandersen/tests/render/hashcodes.txt	2010-07-29 15:37:11 UTC (rev 30877)
@@ -1,31 +0,0 @@
-Image: Raptor_radio_ray_env.blend 33982623
-Image: arealight.blend 12065140
-Image: compo_idmask_cubes.blend 29988479
-Image: compo_map_uv.blend 38220279
-Image: compo_map_uv_cubes.blend 29678781
-Image: compo_map_zcombine_cubes.blend 36673579
-Image: composite_image.blend 218981041
-Image: composite_layers.blend 26746916
-Image: displace.blend 15286177
-Image: dupliverts.blend 6111411
-Image: flaretest.blend 90616561
-Image: flippedmatrixes.blend 32615702
-Image: halostep.blend 18936191
-Image: mirror_texture.blend 18745929
-Image: monkey_cornelius.blend 31411894
-Image: monkey_cornelius_bake.blend 31288006
-Image: monkey_cornelius_compo.blend 31525697
-Image: monkey_cornelius_light-passes.blend 36589238
-Image: monkey_cornelius_passes.blend 29445852
-Image: monkey_cornelius_shadbuf.blend 113297051
-Image: motor9.blend 22404981
-Image: nodelib.blend 78437901
-Image: only_shadow_lamp.blend 15217479
-Image: only_shadow_material.blend 528474
-Image: refract_monkey.blend 53649320
-Image: sss.blend 80845952
-Image: teapot_envmap.blend 68155147
-Image: teapot_soft.blend 16755754
-Image: text-regression.blend 312492495
-Image: windows_tra_shadow.blend 13032008
-Animation: glass.blend 232808186

Modified: branches/soc-2010-leifandersen/tests/render/run.py
===================================================================
--- branches/soc-2010-leifandersen/tests/render/run.py	2010-07-29 14:06:48 UTC (rev 30876)
+++ branches/soc-2010-leifandersen/tests/render/run.py	2010-07-29 15:37:11 UTC (rev 30877)
@@ -244,10 +244,10 @@
            
         # Render depending on the verbosity needed
         if verbose:
-            command = blender_bin + ' -b ' + self.blend_path + " -o " + os.path.join(self.test_path,string.replace(self.name,'.blend','_####')) + ' -F PNG -x 1 -j 15 -a'
+            command = blender_bin + ' -b ' + self.blend_path + " -o " + os.path.join(self.test_path,string.replace(self.name,'.blend','_####')) + ' -F PNG -x 1 -j 30 -a'
             os.system(command)
         else:
-            p = Popen([blender_bin, '-b', self.blend_path, '-o', os.path.join(self.test_path,string.replace(self.name,'.blend','_####')), '-F', 'PNG', '-x', '1', '-j', '15', '-a'], stdout=None, stderr=None, stdin=None)
+            p = Popen([blender_bin, '-b', self.blend_path, '-o', os.path.join(self.test_path,string.replace(self.name,'.blend','_####')), '-F', 'PNG', '-x', '1', '-j', '30', '-a'], stdout=None, stderr=None, stdin=None)
             p.wait()
             
         # Modify self.test_path for later use





More information about the Bf-blender-cvs mailing list