3483b970eb
Bug: v8:11111,chromium:1339648 Change-Id: I3b472f74f37a4e1514ce20635b16970e95a36e15 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3735162 Reviewed-by: Shu-yu Guo <syg@chromium.org> Commit-Queue: Marja Hölttä <marja@chromium.org> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Cr-Commit-Position: refs/heads/main@{#81598}
18 lines
632 B
JavaScript
18 lines
632 B
JavaScript
// Copyright 2022 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.
|
|
|
|
// Flags: --harmony-rab-gsab
|
|
|
|
"use strict";
|
|
|
|
(function FlagMismatch() {
|
|
// Length tracking TA, buffer not resizable.
|
|
const data1 = new Uint8Array([255, 15, 66, 4, 3, 5, 7, 11, 86, 66, 1, 2, 1]);
|
|
assertThrows(() => { d8.serializer.deserialize(data1.buffer); });
|
|
|
|
// RAB backed TA, buffer not resizable.
|
|
const data2 = new Uint8Array([255, 15, 66, 4, 3, 5, 7, 11, 86, 66, 1, 2, 2]);
|
|
assertThrows(() => { d8.serializer.deserialize(data2.buffer); });
|
|
})();
|