Skip to content

Commit dd4420b

Browse files
committed
Quieter test statuses
A bug in the version of BuildBot that we're using causes a growing number of copies of "no test results" to appear in status displays. Work around the bug by making all instances of Test into instances of Compile.
1 parent 07486cb commit dd4420b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

buildbot/master.cfg

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,12 @@ f1 = factory.BuildFactory()
136136
f1.addStep(Git(repourl=anonrepo, mode="clobber"))
137137
f1.addStep(Configure(command="(cd src && util/reconf && ./configure)"))
138138
f1.addStep(Compile(command="(cd src && make)"))
139-
f1.addStep(Test(command="(cd src && make check)",
140-
locks=[testlock.access('exclusive')]))
141-
f1.addStep(Test(command="(cd src && make install DESTDIR=`pwd`/dest)", description=["intalling"], descriptionDone=["test", "install"]))
142-
f1.addStep(Test(command="(cd src && make distclean && echo 'checking git status' && if git status -s | grep '^ [DM]'; then exit 1; else :; fi)", description=["cleaning"], descriptionDone=["test", "clean"]))
139+
f1.addStep(Compile(command="(cd src && make check)",
140+
locks=[testlock.access('exclusive')],
141+
description=["checking"],
142+
descriptionDone=["check"]))
143+
f1.addStep(Compile(command="(cd src && make install DESTDIR=`pwd`/dest)", description=["intalling"], descriptionDone=["test", "install"]))
144+
f1.addStep(Compile(command="(cd src && make distclean && echo 'checking git status' && if git status -s | grep '^ [DM]'; then exit 1; else :; fi)", description=["cleaning"], descriptionDone=["test", "clean"]))
143145

144146
c['builders'] = []
145147
branches = ('master', 'krb5-1.9', 'krb5-1.10', 'krb5-1.11', 'krb5-1.12')

0 commit comments

Comments
 (0)