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

Unified Diff: test/unittests/wasm/encoder-unittest.cc

Issue 2383463002: [wasm] Rename encoder.(cc,h) to wasm-module-builder.(cc,h) (Closed)
Patch Set: Rename unittest Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/unittests/unittests.gyp ('k') | test/unittests/wasm/wasm-module-builder-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/wasm/encoder-unittest.cc
diff --git a/test/unittests/wasm/encoder-unittest.cc b/test/unittests/wasm/encoder-unittest.cc
deleted file mode 100644
index 4e51aa65f13080eac3287a397f878d13811854cd..0000000000000000000000000000000000000000
--- a/test/unittests/wasm/encoder-unittest.cc
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2015 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 "test/unittests/test-utils.h"
-
-#include "src/v8.h"
-
-#include "src/wasm/ast-decoder.h"
-#include "src/wasm/encoder.h"
-
-#include "test/cctest/wasm/test-signatures.h"
-
-namespace v8 {
-namespace internal {
-namespace wasm {
-
-class EncoderTest : public TestWithZone {
- protected:
- void AddLocal(WasmFunctionBuilder* f, LocalType type) {
- uint16_t index = f->AddLocal(type);
- f->EmitGetLocal(index);
- }
-};
-
-TEST_F(EncoderTest, Regression_647329) {
- // Test crashed with asan.
- ZoneBuffer buffer(zone());
- const size_t kSize = ZoneBuffer::kInitialSize * 3 + 4096 + 100;
- byte data[kSize];
- buffer.write(data, kSize);
-}
-
-} // namespace wasm
-} // namespace internal
-} // namespace v8
« no previous file with comments | « test/unittests/unittests.gyp ('k') | test/unittests/wasm/wasm-module-builder-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698