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 |