c38cd1698b
R=ahaas@chromium.org,binji@chromium.org BUG= Review URL: https://codereview.chromium.org/1770913002 Cr-Commit-Position: refs/heads/master@{#34559}
21 lines
578 B
JavaScript
21 lines
578 B
JavaScript
// 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.
|
|
|
|
// Flags: --expose-wasm
|
|
|
|
load("test/mjsunit/wasm/wasm-constants.js");
|
|
load("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
|
(function BasicTest() {
|
|
var kReturnValue = 107;
|
|
var builder = new WasmModuleBuilder();
|
|
|
|
builder.addFunction("main", [kAstI32])
|
|
.addBody([kExprI8Const, kReturnValue])
|
|
.exportFunc();
|
|
|
|
var main = builder.instantiate().exports.main;
|
|
assertEquals(kReturnValue, main());
|
|
})();
|