13debbe1e8
Bug: v8:9213 Change-Id: I05f56f7bdd8d15f2ae992a97529fba18f0644c55 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1678417 Commit-Queue: Nico Hartmann <nicohartmann@google.com> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Sigurd Schneider <sigurds@chromium.org> Reviewed-by: Georg Neis <neis@chromium.org> Cr-Commit-Position: refs/heads/master@{#62461}
11 lines
356 B
JavaScript
11 lines
356 B
JavaScript
// Copyright 2019 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
"use strict";
|
|
|
|
const TEST_ITERATIONS = 1000;
|
|
const SLOW_TEST_ITERATIONS = 50;
|
|
const BITS_CASES = [32, 64, 128, 256, 512, 1024, 2048, 4096, 8192];
|
|
const RANDOM_BIGINTS_MAX_BITS = 64 * 100;
|