Skip to content

Commit

Permalink
Always use ctest --output-on-failure to reduce amount of spam.
Browse files Browse the repository at this point in the history
whitequark committed Mar 3, 2017
1 parent 16c85b7 commit 613c4ea
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions templates/var/buildbot/master/master.cfg
Original file line number Diff line number Diff line change
@@ -128,13 +128,9 @@ def addOpenfpgaBuildStep(suffix, cmake_args=[], build_prefix=[]):
if suffix == 'analyzer':
return

if suffix == 'normal':
ctest_mode = '--verbose'
else:
ctest_mode = '--output-on-failure'
openfpgaBuildFactory.addStep(ShellCommand(
name = 'test_openfpga_' + suffix,
command = ['ctest', ctest_mode],
command = ['ctest', '--output-on-failure'],
workdir = workdir,
haltOnFailure = False,
description = 'testing',

0 comments on commit 613c4ea

Please sign in to comment.