mirror of
https://github.com/boostorg/boost.git
synced 2025-04-07 22:39:25 +00:00
Add default -m64 to bjam_options if no -m argument.
Since results reporting limits output to 64kb we'll do the same with target output collected by bjam. This should help clang testers with develop branch.
This commit is contained in:
parent
1f8b4d03e3
commit
932463db99
1 changed files with 5 additions and 0 deletions
|
@ -257,6 +257,11 @@ class runner:
|
|||
self.bjam_options += ' "--limit-tests=' + \
|
||||
"|".join(lib for lib in self.libraries if lib != "build") + '"'
|
||||
|
||||
# if no -m bjam option add -m64 (limit target to 64kb)
|
||||
if self.bjam_options.find('-m') == -1:
|
||||
# match buffer size used in web results reporting
|
||||
self.bjam_options += ' -m64'
|
||||
|
||||
self.main()
|
||||
|
||||
#~ The various commands that make up the testing sequence...
|
||||
|
|
Loading…
Add table
Reference in a new issue