Revision: 22976
Author:   [email protected]
Date:     Thu Aug  7 15:26:28 2014 UTC
Log:      Enable TF for testing benchmarks.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/440383002
http://code.google.com/p/v8/source/detail?r=22976

Modified:
 /branches/bleeding_edge/test/benchmarks/benchmarks.status
 /branches/bleeding_edge/test/benchmarks/testcfg.py

=======================================
--- /branches/bleeding_edge/test/benchmarks/benchmarks.status Wed Feb 12 09:19:30 2014 UTC +++ /branches/bleeding_edge/test/benchmarks/benchmarks.status Thu Aug 7 15:26:28 2014 UTC
@@ -25,9 +25,12 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

-# Too slow in Debug mode.
+
 [
 [ALWAYS, {
-  'octane/mandreel': [PASS, ['mode == debug', SKIP]],
+  # Too slow in Debug mode. TODO(mstarzinger): Too slow for TF.
+  'octane/mandreel': [PASS, NO_VARIANTS, ['mode == debug', SKIP]],
+  # TODO(mstarzinger): Out of mem with TF.
+  'octane/zlib': [PASS, NO_VARIANTS],
 }],  # ALWAYS
 ]
=======================================
--- /branches/bleeding_edge/test/benchmarks/testcfg.py Wed Nov 20 15:05:52 2013 UTC +++ /branches/bleeding_edge/test/benchmarks/testcfg.py Thu Aug 7 15:26:28 2014 UTC
@@ -31,6 +31,7 @@
 import subprocess
 import tarfile

+from testrunner.local import statusfile
 from testrunner.local import testsuite
 from testrunner.objects import testcase

@@ -183,8 +184,12 @@
     os.chdir(old_cwd)

   def VariantFlags(self, testcase, default_flags):
-    # Both --nocrankshaft and --stressopt are very slow.
-    return [[]]
+ if testcase.outcomes and statusfile.OnlyStandardVariant(testcase.outcomes):
+      return [[]]
+    # Both --nocrankshaft and --stressopt are very slow. Add TF but without
+    # always opt to match the way the benchmarks are run for performance
+    # testing.
+    return [[], ["--turbo-filter=*"]]


 def GetSuite(name, root):

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to