Skip to content

Commit 12b6733

Browse files
committedMar 3, 2017
Don't halt on test failure.
1 parent a5b67f8 commit 12b6733

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎templates/var/buildbot/master/master.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ openfpgaBuildFactory.addStep(ShellCommand(
9090
name = 'cppcheck_openfpga',
9191
command = ['cppcheck', '-q', '--enable=warning', '--error-exitcode=1',
9292
WithProperties('%(workdir)s/openfpga/src')],
93-
haltOnFailure = True,
93+
haltOnFailure = False,
9494
description = 'cppchecking',
9595
descriptionDone = 'cppcheck',
9696
descriptionSuffix = 'openfpga'))
@@ -136,7 +136,7 @@ def addOpenfpgaBuildStep(suffix, cmake_args=[], build_prefix=[]):
136136
name = 'test_openfpga_' + suffix,
137137
command = ['ctest', ctest_mode],
138138
workdir = workdir,
139-
haltOnFailure = True,
139+
haltOnFailure = False,
140140
description = 'testing',
141141
descriptionDone = 'test',
142142
descriptionSuffix = ['openfpga', suffix]))

0 commit comments

Comments
 (0)
Please sign in to comment.