70cb6f50d2
Bug: chromium:1198188 Change-Id: Iaf2cdd85124295d842ff6bb139ab0d85371c08ae Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2833920 Reviewed-by: Ulan Degenbaev <ulan@chromium.org> Commit-Queue: Hannes Payer <hpayer@chromium.org> Cr-Commit-Position: refs/heads/master@{#74028}
21 lines
611 B
C++
21 lines
611 B
C++
// 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.
|
|
|
|
#include "src/execution/isolate.h"
|
|
#include "src/heap/factory.h"
|
|
#include "test/unittests/test-utils.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
using NewFixedDoubleArrayTest = TestWithIsolateAndZone;
|
|
|
|
TEST_F(NewFixedDoubleArrayTest, ThrowOnNegativeLength) {
|
|
ASSERT_DEATH_IF_SUPPORTED({ factory()->NewFixedDoubleArray(-1); },
|
|
"Fatal JavaScript invalid size error -1");
|
|
}
|
|
|
|
} // namespace internal
|
|
} // namespace v8
|