Reviewers: Michael Starzinger, Description: Increase timeout when running test.py with the --stress-opt option.
Please review this at https://chromiumcodereview.appspot.com/9361033/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M tools/test.py Index: tools/test.py =================================================================== --- tools/test.py (revision 10643) +++ tools/test.py (working copy) @@ -711,7 +711,7 @@ def GetTimeout(self, testcase, mode): result = self.timeout * TIMEOUT_SCALEFACTOR[mode] if '--stress-opt' in self.GetVmFlags(testcase, mode): - return result * 2 + return result * 4 else: return result -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
