diff options
Diffstat (limited to 'deps/v8/tools/test-wrapper-gypbuild.py')
-rwxr-xr-x | deps/v8/tools/test-wrapper-gypbuild.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/tools/test-wrapper-gypbuild.py b/deps/v8/tools/test-wrapper-gypbuild.py index 465ca88c3d..fda4105a98 100755 --- a/deps/v8/tools/test-wrapper-gypbuild.py +++ b/deps/v8/tools/test-wrapper-gypbuild.py @@ -197,9 +197,9 @@ def PassOnOptions(options): 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 |