Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: test/unittests/wasm/encoder-unittest.cc

Issue 2383463002: [wasm] Rename encoder.(cc,h) to wasm-module-builder.(cc,h) (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698