[Bf-blender-cvs] [66067f3] master: Buildbot: Disable tests on Linux builders

Sergey Sharybin noreply at git.blender.org
Thu Dec 3 12:46:26 CET 2015


Commit: 66067f3a9783f5b58fd14cc0e5d6df219af5360c
Author: Sergey Sharybin
Date:   Thu Dec 3 16:44:44 2015 +0500
Branches: master
https://developer.blender.org/rB66067f3a9783f5b58fd14cc0e5d6df219af5360c

Buildbot: Disable tests on Linux builders

No idea why they works on windows, but points are:

- libs/tests folder is NOT checked out on any platforms
- render_povray addon does mkdir on a path which might not have parents

There might be some other issues, but those are kinda stoppers for us.

===================================================================

M	build_files/buildbot/slave_test.py

===================================================================

diff --git a/build_files/buildbot/slave_test.py b/build_files/buildbot/slave_test.py
index 9f43bcb..973e17a 100644
--- a/build_files/buildbot/slave_test.py
+++ b/build_files/buildbot/slave_test.py
@@ -35,6 +35,10 @@ blender_dir = '../blender.git'
 if "cmake" in builder:
     # cmake
 
+    if "linux" in builder:
+        print("Automated tests are still DISABLED!")
+        sys.exit(0)
+
     build_dir = os.path.abspath(os.path.join('..', 'build', builder))
     chroot_name = None
     chroot_prefix = []




More information about the Bf-blender-cvs mailing list