chromium/v8/test/cctest/wasm/test-run-wasm-memory64.cc

// Copyright 2020 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 "src/wasm/wasm-opcodes-inl.h"
#include "test/cctest/cctest.h"
#include "test/cctest/wasm/wasm-run-utils.h"
#include "test/common/wasm/test-signatures.h"
#include "test/common/wasm/wasm-macro-gen.h"
#include "test/common/wasm/wasm-module-runner.h"

namespace v8::internal::wasm {

template <typename ReturnType, typename... ParamTypes>
class Memory64Runner : public WasmRunner<ReturnType, ParamTypes...> {};

WASM_EXEC_TEST(Load) {}

// TODO(clemensb): Test atomic instructions.

WASM_EXEC_TEST(InitExpression) {}

WASM_EXEC_TEST(MemorySize) {}

WASM_EXEC_TEST(MemoryGrow) {}

}  // namespace v8::internal::wasm