about summary refs log tree commit diff
path: root/src/etc/check-summary.py
AgeCommit message (Collapse)AuthorLines
2017-02-06Clean our src/etc of old filesAlex Crichton-57/+0
Some of these have long since expired, some are no longer in use now that we've jettisoned the makefiles, but none of them should be needed any more.
2015-05-24etc: py3 compat for check-summary.pyRicho Healey-7/+7
2015-01-27Fix PEP8 for check-summary.pyRicho Healey-2/+6
2014-05-12add shebang to scripts that have execute bit setDavid Creswick-0/+2
2014-02-05etc: add missing license boilerplatesAdrien Tétar-2/+9
2014-01-23Make check-summary.py support file globbingBen Noordhuis-1/+3
Fixes the following error when executing `make check-lite`: Traceback (most recent call last): File "/home/bnoordhuis/src/rust/src/etc/check-summary.py", line 27, in <module> map(summarise, logfiles) File "/home/bnoordhuis/src/rust/src/etc/check-summary.py", line 10, in summarise with open(fname) as fd: IOError: [Errno 2] No such file or directory: 'tmp/*.log'
2014-01-16Update test run summaryDerek Guenther-9/+17
2013-01-17Add a license check to tidy. #4018Brian Anderson-0/+1
2012-04-04build: Cleanup of test summary printingBrian Anderson-1/+2
2012-04-04Logfile output from tests; summarise in make checkGrahame Bowland-0/+32
Add an optional --logfile argument to std::test::test_main and to compiletest. Use this features and the new 'check-summary.py' script to summarise all the tests performed by the 'check' target. This is a short term fix for #2075.