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 'build_files/buildbot/slave_test.py')
-rw-r--r--build_files/buildbot/slave_test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/build_files/buildbot/slave_test.py b/build_files/buildbot/slave_test.py
index a9592813912..78f8f68317d 100644
--- a/build_files/buildbot/slave_test.py
+++ b/build_files/buildbot/slave_test.py
@@ -43,12 +43,14 @@ if "cmake" in builder:
chroot_name = None
chroot_prefix = []
+ """
if builder.endswith('x86_64_cmake'):
chroot_name = 'buildbot_squeeze_x86_64'
- elif builder.endswith('i386_cmake'):
+ elif builder.endswith('i686_cmake'):
chroot_name = 'buildbot_squeeze_i686'
if chroot_name:
chroot_prefix = ['schroot', '-c', chroot_name, '--']
+ """
os.chdir(build_dir)
retcode = subprocess.call(chroot_prefix + ['ctest', '--output-on-failure'])