791e085d2f
Add an always_sparkplug testing variant, and fix a couple of issues it found. Bug: v8:11420 Change-Id: I7d87a41e3413f40271a0140118531f075d633b23 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2773047 Reviewed-by: Patrick Thier <pthier@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Auto-Submit: Leszek Swirski <leszeks@chromium.org> Commit-Queue: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/master@{#73529}
30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
// Copyright 2020 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.
|
|
|
|
|
|
// Adjust mjsunit behavior for differential fuzzing.
|
|
|
|
// We're not interested in stack traces.
|
|
MjsUnitAssertionError = () => {};
|
|
|
|
// Do more printing in assertions for more correctness coverage.
|
|
failWithMessage = message => { __prettyPrint(message); };
|
|
assertSame = (expected, found, name_opt) => { __prettyPrint(found); };
|
|
assertNotSame = (expected, found, name_opt) => { __prettyPrint(found); };
|
|
assertEquals = (expected, found, name_opt) => { __prettyPrint(found); };
|
|
assertNotEquals = (expected, found, name_opt) => { __prettyPrint(found); };
|
|
assertNull = (value, name_opt) => { __prettyPrint(value); };
|
|
assertNotNull = (value, name_opt) => { __prettyPrint(value); };
|
|
|
|
// Suppress optimization status as it leads to false positives.
|
|
assertUnoptimized = () => {};
|
|
assertOptimized = () => {};
|
|
isNeverOptimize = () => {};
|
|
isAlwaysOptimize = () => {};
|
|
isInterpreted = () => {};
|
|
isBaseline = () => {};
|
|
isUnoptimized = () => {};
|
|
isOptimized = () => {};
|
|
isTurboFanned = () => {};
|