exit on first error when building unit tests

This commit is contained in:
Arvid Norberg 2013-10-05 18:52:47 +00:00
parent f44f7d18a2
commit 606f5a9ea1
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ def run_tests(toolset, tests, features, options, test_dir, time_limit, increment
# works for actual unit tests
if 'launcher=valgrind' in options_copy:
options_copy.remove('launcher=valgrind')
cmdline = ['bjam', '--out-xml=%s' % xml_file, '-l%d' % time_limit, '--abbreviate-paths', toolset] + options_copy + feature_list
cmdline = ['bjam', '--out-xml=%s' % xml_file, '-l%d' % time_limit, '-q', '--abbreviate-paths', toolset] + options_copy + feature_list
# print ' '.join(cmdline)