[zorg] r250201 - Few changes for builders "clang-ppc64-elf-linux" and "ppc64le-clanglnt":
Galina Kistanova via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 13 11:40:03 PDT 2015
Author: gkistanova
Date: Tue Oct 13 13:40:02 2015
New Revision: 250201
URL: http://llvm.org/viewvc/llvm-project?rev=250201&view=rev
Log:
Few changes for builders "clang-ppc64-elf-linux" and "ppc64le-clanglnt":
1. Remove multisample option. The lnt tests are not used to test performance on power so all this option does is slow things down.
2. Use -j8 on BE powerpc64. This bot now has underused CPU available and the lnt test is the slowest one to run so increasing the parallel runs should help throughput.
Patch by Bill Seurer.
Modified:
zorg/trunk/buildbot/osuosl/master/config/builders.py
Modified: zorg/trunk/buildbot/osuosl/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/builders.py?rev=250201&r1=250200&r2=250201&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Tue Oct 13 13:40:02 2015
@@ -288,7 +288,7 @@ def _get_clang_builders():
'slavenames' :["ppc64be-clang-lnt-test"],
'builddir' :"clang-ppc64-1",
'factory' : LNTBuilder.getLNTFactory(triple='ppc64-elf-linux1',
- nt_flags=['--multisample=3','--cflag','-mcpu=native'],
+ nt_flags=['--cflag','-mcpu=native', '-j8'],
jobs=4, use_pty_in_tests=True,
testerName='O3-plain', run_cxx_tests=True)},
@@ -305,7 +305,7 @@ def _get_clang_builders():
'slavenames' :["ppc64le-clang-lnt-test"],
'builddir' :"clang-lnt-ppc64le-1",
'factory' : LNTBuilder.getLNTFactory(triple='ppc64le-elf-linux1',
- nt_flags=['--multisample=3','--cflag','-mcpu=native'],
+ nt_flags=['--cflag','-mcpu=native'],
jobs=4, use_pty_in_tests=True,
testerName='ppc64le-plain', run_cxx_tests=True)},
More information about the llvm-commits
mailing list