Ignore the exit status from the --help run on timing builds, since some
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 17 Dec 2009 07:11:51 +0000 (07:11 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 17 Dec 2009 07:11:51 +0000 (07:11 +0000)
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

QMTest/TestSCons.py

index 00328ed85f703264b5ddcf3192a834e71bc6080f..c98314bf0275b44bd0c5277a7735f83c51f00c52 100644 (file)
@@ -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)