From b6ed068a481fad944c510ce6bc1e2c4b92e0b8cd Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Mon, 7 Apr 2014 15:28:33 -0400 Subject: [PATCH] add subunit log test sanity subunit logs should not be more than 50MB uncompressed. If they are you are doing something terribly wrong, and both consuming a ton of infra resources, as well as local user memory. Change-Id: I0f93684c0b9055bc95808cfae827e171fa30f6d1 --- modules/jenkins/files/slave_scripts/run-unittests.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/jenkins/files/slave_scripts/run-unittests.sh b/modules/jenkins/files/slave_scripts/run-unittests.sh index 23fe20486a..0c0d3ec34f 100755 --- a/modules/jenkins/files/slave_scripts/run-unittests.sh +++ b/modules/jenkins/files/slave_scripts/run-unittests.sh @@ -46,10 +46,21 @@ if [ -d ".testrepository" ] ; then .tox/$venv/bin/subunit-1to2 < .testrepository/0 > ./subunit_log.txt fi .tox/$venv/bin/python /usr/local/jenkins/slave_scripts/subunit2html.py ./subunit_log.txt testr_results.html + SUBUNIT_SIZE=$(du -k ./subunit_log.txt | awk '{print $1}') gzip -9 ./subunit_log.txt gzip -9 ./testr_results.html export PYTHON=.tox/$venv/bin/python + if [[ "$SUBUNIT_SIZE" -gt 50000 ]]; then + echo + echo "sub_unit.log was > 50 MB of uncompressed data!!!" + echo "Something is causing tests for this project to log significant amounts" + echo "of data. This may be writers to python logging, stdout, or stderr." + echo "Failing this test as a result" + echo + exit 1 + fi + rancount=$(.tox/$venv/bin/testr last | sed -ne 's/Ran \([0-9]\+\).*tests in.*/\1/p') if [ "$rancount" -eq "0" ] ; then echo