Revision: 11047
Author:   [email protected]
Date:     Wed Mar 14 07:52:52 2012
Log:      Fix passing of shard options in test wrapper.

[email protected]

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

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

=======================================
--- /branches/bleeding_edge/tools/test-wrapper-gypbuild.py Wed Mar 7 04:51:31 2012 +++ /branches/bleeding_edge/tools/test-wrapper-gypbuild.py Wed Mar 14 07:52:52 2012
@@ -197,9 +197,9 @@
   if options.crankshaft:
     result += ['--crankshaft']
   if options.shard_count != 1:
-    result += ['--shard_count=%s' % options.shard_count]
+    result += ['--shard-count=%s' % options.shard_count]
   if options.shard_run != 1:
-    result += ['--shard_run=%s' % options.shard_run]
+    result += ['--shard-run=%s' % options.shard_run]
   if options.noprof:
     result += ['--noprof']
   return result

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

Reply via email to