summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/wasm/instantiate-run-basic.js
blob: 2e649a0bd28b7c9e449b444968355eca7d8fd79a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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());
})();