Skip to content

Commit 613c4ea

Browse files
committedMar 3, 2017
Always use ctest --output-on-failure to reduce amount of spam.
1 parent 16c85b7 commit 613c4ea

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed
 

Diff for: ‎templates/var/buildbot/master/master.cfg

+1-5
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,9 @@ def addOpenfpgaBuildStep(suffix, cmake_args=[], build_prefix=[]):
128128
if suffix == 'analyzer':
129129
return
130130

131-
if suffix == 'normal':
132-
ctest_mode = '--verbose'
133-
else:
134-
ctest_mode = '--output-on-failure'
135131
openfpgaBuildFactory.addStep(ShellCommand(
136132
name = 'test_openfpga_' + suffix,
137-
command = ['ctest', ctest_mode],
133+
command = ['ctest', '--output-on-failure'],
138134
workdir = workdir,
139135
haltOnFailure = False,
140136
description = 'testing',

0 commit comments

Comments
 (0)
Please sign in to comment.