361bb1a047
This patch introduces assertPromiseFulfills and assertPromiseFulfills as a replacement for assertPromiseResult because it’s more JavaScript-y. BUG=v8:6921 R=ahaas@chromium.org Also-By: ahaas@chromium.org Change-Id: I2f865dba3992ddf3b58987bf0b376d143edb5c31 Reviewed-on: https://chromium-review.googlesource.com/718746 Commit-Queue: Andreas Haas <ahaas@chromium.org> Reviewed-by: Andreas Haas <ahaas@chromium.org> Cr-Commit-Position: refs/heads/master@{#48578}
34 lines
923 B
JavaScript
34 lines
923 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: --allow-natives-syntax
|
|
|
|
load("test/mjsunit/wasm/wasm-constants.js");
|
|
load("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
|
const kReturnValue = 15;
|
|
|
|
function getBuilder() {
|
|
var builder = new WasmModuleBuilder();
|
|
|
|
builder.addFunction("main", kSig_i_i)
|
|
.addBody([kExprI32Const, kReturnValue])
|
|
.exportFunc();
|
|
return builder;
|
|
}
|
|
|
|
(function BasicTest() {
|
|
var builder = getBuilder();
|
|
var main = builder.instantiate().exports.main;
|
|
assertEquals(kReturnValue, main());
|
|
})();
|
|
|
|
(function AsyncTest() {
|
|
var builder = getBuilder();
|
|
var buffer = builder.toBuffer();
|
|
assertPromiseFulfills(WebAssembly.instantiate(buffer))
|
|
.then(pair => pair.instance.exports.main())
|
|
.then(result => assertEquals(kReturnValue, result));
|
|
})();
|