668dcf3b56
This reverts commit 7a6e6bb1e2
.
Reason for revert: breaks layout tests:
https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14688
See:
https://github.com/v8/v8/wiki/Blink-layout-tests
Original change's description:
> [wasm] Make WebAssembly.compile() asynchronous
>
> titzer@ originally created this
> CL (https://codereview.chromium.org/2757903002). I fixed crashing tests
> and adressed some comments of the reviewers.
>
> R=bradnelson@chromium.org, clemensh@chromium.org, mtrofin@chromium.org
> BUG=v8:6003
>
> Change-Id: I4ab6d503909402d24043657a896200032e6d1023
> Reviewed-on: https://chromium-review.googlesource.com/464887
> Reviewed-by: Clemens Hammacher <clemensh@chromium.org>
> Reviewed-by: Mircea Trofin <mtrofin@chromium.org>
> Commit-Queue: Andreas Haas <ahaas@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#44333}
TBR=bradnelson@chromium.org,mtrofin@chromium.org,ahaas@chromium.org,clemensh@chromium.org,titzer@chromium.org,v8-reviews@googlegroups.com
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6003
Change-Id: I87dbdbba0be4624828b6b0a94e02b6681593e335
Reviewed-on: https://chromium-review.googlesource.com/465813
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#44342}
108 lines
3.1 KiB
JavaScript
108 lines
3.1 KiB
JavaScript
// Copyright 2017 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.
|
|
|
|
// TODO(eholk): Once we have stable test IDs, use those as the key instead.
|
|
// See https://github.com/WebAssembly/spec/issues/415
|
|
const known_failures = {
|
|
"'WebAssembly.Module.customSections' method":
|
|
'https://bugs.chromium.org/p/v8/issues/detail?id=5815',
|
|
"'WebAssembly.Table.prototype.get' method":
|
|
'https://bugs.chromium.org/p/v8/issues/detail?id=5507',
|
|
"'WebAssembly.Table.prototype.set' method":
|
|
'https://bugs.chromium.org/p/v8/issues/detail?id=5507',
|
|
"'WebAssembly.Instance' constructor function":
|
|
'https://bugs.chromium.org/p/v8/issues/detail?id=6017',
|
|
};
|
|
|
|
let failures = [];
|
|
let unexpected_successes = [];
|
|
|
|
let last_promise = new Promise((resolve, reject) => { resolve(); });
|
|
|
|
function test(func, description) {
|
|
let maybeErr;
|
|
try { func(); }
|
|
catch(e) { maybeErr = e; }
|
|
if (typeof maybeErr !== 'undefined') {
|
|
var known = "";
|
|
if (known_failures[description]) {
|
|
known = " (known)";
|
|
}
|
|
print(`${description}: FAIL${known}. ${maybeErr}`);
|
|
failures.push(description);
|
|
} else {
|
|
if (known_failures[description]) {
|
|
unexpected_successes.push(description);
|
|
}
|
|
print(`${description}: PASS.`);
|
|
}
|
|
}
|
|
|
|
function promise_test(func, description) {
|
|
last_promise = last_promise.then(func)
|
|
.then(_ => {
|
|
if (known_failures[description]) {
|
|
unexpected_successes.push(description);
|
|
}
|
|
print(`${description}: PASS.`);
|
|
})
|
|
.catch(err => {
|
|
var known = "";
|
|
if (known_failures[description]) {
|
|
known = " (known)";
|
|
}
|
|
print(`${description}: FAIL${known}. ${err}`);
|
|
failures.push(description);
|
|
});
|
|
}
|
|
|
|
let assert_equals = assertEquals;
|
|
let assert_true = assertEquals.bind(null, true);
|
|
let assert_false = assertEquals.bind(null, false);
|
|
|
|
function assert_unreached(description) {
|
|
throw new Error(`unreachable:\n${description}`);
|
|
}
|
|
|
|
function assertErrorMessage(f, ctor, test) {
|
|
try { f(); }
|
|
catch (e) {
|
|
assert_true(e instanceof ctor, "expected exception " + ctor.name + ", got " + e);
|
|
return;
|
|
}
|
|
assert_true(false, "expected exception " + ctor.name + ", no exception thrown");
|
|
};
|
|
|
|
load("test/wasm-js/test/harness/wasm-constants.js");
|
|
load("test/wasm-js/test/harness/wasm-module-builder.js");
|
|
load("test/wasm-js/test/js-api/jsapi.js");
|
|
|
|
last_promise.then(_ => {
|
|
if (failures.length > 0) {
|
|
let unexpected = false;
|
|
print("Some tests FAILED:");
|
|
for (let i in failures) {
|
|
if (known_failures[failures[i]]) {
|
|
print(` ${failures[i]} [KNOWN: ${known_failures[failures[i]]}]`);
|
|
} else {
|
|
print(` ${failures[i]}`);
|
|
unexpected = true;
|
|
}
|
|
}
|
|
if (unexpected_successes.length > 0) {
|
|
unexpected = true;
|
|
print("");
|
|
print("Unexpected successes:");
|
|
for(let i in unexpected_successes) {
|
|
print(` ${unexpected_successes[i]}`);
|
|
}
|
|
print("Some tests SUCCEEDED but were known failures. If you've fixed " +
|
|
"the bug, please remove the test from the known failures list.")
|
|
}
|
|
if (unexpected) {
|
|
quit(1);
|
|
}
|
|
}
|
|
});
|