Revision: 11749
Author:   [email protected]
Date:     Fri Jun  8 07:47:12 2012
Log:      Remove --crankshaft flag from the test infrastructure.

It has outlived its usefulness as Crankshaft is on by default anyway.

Review URL: https://chromiumcodereview.appspot.com/10539062
http://code.google.com/p/v8/source/detail?r=11749

Modified:
 /branches/bleeding_edge/test/cctest/cctest.status
 /branches/bleeding_edge/tools/test-wrapper-gypbuild.py
 /branches/bleeding_edge/tools/test.py

=======================================
--- /branches/bleeding_edge/test/cctest/cctest.status Fri May 25 02:25:15 2012 +++ /branches/bleeding_edge/test/cctest/cctest.status Fri Jun 8 07:47:12 2012
@@ -76,17 +76,3 @@
 test-serialize/DeserializeAndRunScript2: SKIP
 test-serialize/DeserializeFromSecondSerialization: SKIP

-##############################################################################
-[ $arch == arm && $crankshaft ]
-
-# Tests that time out with crankshaft.
-test-debug/ThreadedDebugging: SKIP
-test-debug/DebugBreakLoop: SKIP
-
-
-##############################################################################
-[ $arch == mips && $crankshaft ]
-
-# Tests that time out with crankshaft.
-test-debug/ThreadedDebugging: SKIP
-test-debug/DebugBreakLoop: SKIP
=======================================
--- /branches/bleeding_edge/tools/test-wrapper-gypbuild.py Mon Jun 4 05:38:59 2012 +++ /branches/bleeding_edge/tools/test-wrapper-gypbuild.py Fri Jun 8 07:47:12 2012
@@ -112,9 +112,6 @@
   result.add_option("--nostress",
help="Don't run crankshaft --always-opt --stress-op test",
                     default=False, action="store_true")
-  result.add_option("--crankshaft",
-                    help="Run with the --crankshaft flag",
-                    default=False, action="store_true")
   result.add_option("--shard-count",
                     help="Split testsuites into this number of shards",
                     default=1, type="int")
@@ -199,8 +196,6 @@
     result += ['--stress-only']
   if options.nostress:
     result += ['--nostress']
-  if options.crankshaft:
-    result += ['--crankshaft']
   if options.shard_count != 1:
     result += ['--shard-count=%s' % options.shard_count]
   if options.shard_run != 1:
=======================================
--- /branches/bleeding_edge/tools/test.py       Fri Mar 16 07:33:55 2012
+++ /branches/bleeding_edge/tools/test.py       Fri Jun  8 07:47:12 2012
@@ -1246,9 +1246,6 @@
   result.add_option("--nostress",
help="Don't run crankshaft --always-opt --stress-op test",
                     default=False, action="store_true")
-  result.add_option("--crankshaft",
-                    help="Run with the --crankshaft flag",
-                    default=False, action="store_true")
   result.add_option("--shard-count",
                     help="Split testsuites into this number of shards",
                     default=1, type="int")
@@ -1300,11 +1297,6 @@
     VARIANT_FLAGS = [['--stress-opt', '--always-opt']]
   if options.nostress:
     VARIANT_FLAGS = [[],['--nocrankshaft']]
-  if options.crankshaft:
-    if options.special_command:
-      options.special_command += " --crankshaft"
-    else:
-      options.special_command = "@ --crankshaft"
   if options.shell.endswith("d8"):
     if options.special_command:
       options.special_command += " --test"
@@ -1493,7 +1485,6 @@
         'system': utils.GuessOS(),
         'arch': options.arch,
         'simulator': options.simulator,
-        'crankshaft': options.crankshaft,
         'isolates': options.isolates
       }
       test_list = root.ListTests([], path, context, mode, [])

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to