| Index: test/cctest/wasm/test-run-wasm.cc
|
| diff --git a/test/cctest/wasm/test-run-wasm.cc b/test/cctest/wasm/test-run-wasm.cc
|
| index 422ced9be95ab6108041a21140bc0bcfbe93c0d0..38c4769b69345b823f114a1fa231e94f6fa3b1e5 100644
|
| --- a/test/cctest/wasm/test-run-wasm.cc
|
| +++ b/test/cctest/wasm/test-run-wasm.cc
|
| @@ -79,22 +79,6 @@ WASM_EXEC_TEST(Int32Const_many) {
|
| }
|
| }
|
|
|
| -WASM_EXEC_TEST(MemorySize1) {
|
| - TestingModule module(execution_mode);
|
| - WasmRunner<int32_t> r(&module);
|
| - module.AddMemory(WasmModule::kPageSize * 1);
|
| - BUILD(r, kExprMemorySize);
|
| - CHECK_EQ(1, r.Call());
|
| -}
|
| -
|
| -WASM_EXEC_TEST(MemorySize2) {
|
| - TestingModule module(execution_mode);
|
| - WasmRunner<int32_t> r(&module);
|
| - module.AddMemory(WasmModule::kPageSize * 3);
|
| - BUILD(r, kExprMemorySize);
|
| - CHECK_EQ(3, r.Call());
|
| -}
|
| -
|
| WASM_EXEC_TEST(Int32Param0) {
|
| WasmRunner<int32_t> r(execution_mode, MachineType::Int32());
|
| // return(local[0])
|
|
|