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:
K. Noel Belcourt 2014-01-29 21:17:46 -07:00
parent 1f8b4d03e3
commit 932463db99

View file

@ -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...