This commit is contained in:
Thomas Nagy 2016-08-21 15:17:47 +02:00
parent 5b30eba4db
commit 96fe543f2e
2 changed files with 3 additions and 4 deletions

View File

@ -1,8 +1,6 @@
NEW IN WAF 1.9.3
----------------
* Enable configuration task class lookup in conf.multicheck
* Enable individual output lines in conf.multicheck
* Parallel configuration tests can use any build function
* Parallel configuration tests enhancements (conf.multicheck)
* Updated examples for stripping executables
* Qt 5.7 detection of -std=c++11

View File

@ -1299,7 +1299,8 @@ def multicheck(self, *k, **kw):
{'header_name':'stdlib.h', 'msg':'... stdlib', 'okmsg': 'aye', 'errmsg': 'nope'},
{'func': test_build, 'msg':'... testing an arbitrary build function', 'okmsg':'ok'},
msg = 'Checking for headers in parallel',
mandatory = False # failures will not cause an error message
mandatory = True # mandatory tests raise an error at the end
run_all_tests = True # try running all tests
)
The configuration tests may modify the values in conf.env in any order, so it is