SVN commit 558421 by mueller: even an empty source file is bigger than 512 bytes M +1 -1 scheduler.cpp --- trunk/icecream/services/scheduler.cpp #558420:558421 @@ -244,7 +244,7 @@ { JobStat st; /* We don't want to base our timings on failed or too small jobs. */ - if (msg->out_uncompressed < 512 + if (msg->out_uncompressed < 4096 || msg->exitcode != 0) return;