| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "test/unittests/test-utils.h" | |
| 6 | |
| 7 #include "src/v8.h" | |
| 8 | |
| 9 #include "src/wasm/ast-decoder.h" | |
| 10 #include "src/wasm/encoder.h" | |
| 11 | |
| 12 #include "test/cctest/wasm/test-signatures.h" | |
| 13 | |
| 14 namespace v8 { | |
| 15 namespace internal { | |
| 16 namespace wasm { | |
| 17 | |
| 18 class EncoderTest : public TestWithZone { | |
| 19 protected: | |
| 20 void AddLocal(WasmFunctionBuilder* f, LocalType type) { | |
| 21 uint16_t index = f->AddLocal(type); | |
| 22 f->EmitGetLocal(index); | |
| 23 } | |
| 24 }; | |
| 25 | |
| 26 TEST_F(EncoderTest, Regression_647329) { | |
| 27 // Test crashed with asan. | |
| 28 ZoneBuffer buffer(zone()); | |
| 29 const size_t kSize = ZoneBuffer::kInitialSize * 3 + 4096 + 100; | |
| 30 byte data[kSize]; | |
| 31 buffer.write(data, kSize); | |
| 32 } | |
| 33 | |
| 34 } // namespace wasm | |
| 35 } // namespace internal | |
| 36 } // namespace v8 | |
| OLD | NEW |