2019-03-12 09:01:49 +01:00
|
|
|
// 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.
|
|
|
|
|
2019-08-01 08:38:30 +02:00
|
|
|
#include "src/execution/isolate.h"
|
2019-03-12 09:01:49 +01:00
|
|
|
#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); },
|
2021-07-14 11:30:07 +02:00
|
|
|
"Fatal JavaScript invalid size error -1");
|
2019-03-12 09:01:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|