From: stevenknight Date: Thu, 17 Dec 2009 07:11:51 +0000 (+0000) Subject: Ignore the exit status from the --help run on timing builds, since some X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b88005e5cf01b075070ea41473d373065081483e;p=scons.git Ignore the exit status from the --help run on timing builds, since some early revisions have bugs and we can still go on and get useful stats from the full and null builds. git-svn-id: http://scons.tigris.org/svn/scons/trunk@4557 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/QMTest/TestSCons.py b/QMTest/TestSCons.py index 00328ed8..c98314bf 100644 --- a/QMTest/TestSCons.py +++ b/QMTest/TestSCons.py @@ -1129,6 +1129,10 @@ class TimeSCons(TestSCons): "real work" is done. """ kw['options'] = kw.get('options', '') + ' --help' + # Ignore the exit status. If the --help run dies, we just + # won't report any statistics for it, but we can still execute + # the full and null builds. + kw['status'] = None # TODO(1.5) #self.run(*args, **kw) apply(self.run, args, kw)