| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- 'use strict';
- let soft_validate = true;
- let spectest = {
- print: print || ((...xs) => console.log(...xs)),
- global: 666,
- table: new WebAssembly.Table({initial: 10, maximum: 20, element: 'anyfunc'}), memory: new WebAssembly.Memory({initial: 1, maximum: 2}),};
- let registry = {spectest};
- let $$;
- function register(name, instance) {
- registry[name] = instance.exports;
- }
- function module(bytes) {
- let buffer = new ArrayBuffer(bytes.length);
- let view = new Uint8Array(buffer);
- for (let i = 0; i < bytes.length; ++i) {
- view[i] = bytes.charCodeAt(i);
- }
- return new WebAssembly.Module(buffer);
- }
- function instance(bytes, imports = registry) {
- return new WebAssembly.Instance(module(bytes), imports);
- }
- function assert_malformed(bytes) {
- try { module(bytes) } catch (e) {
- if (e instanceof WebAssembly.CompileError) return;
- }
- throw new Error("Wasm decoding failure expected");
- }
- function assert_invalid(bytes) {
- try { module(bytes) } catch (e) {
- if (e instanceof WebAssembly.CompileError) return;
- }
- throw new Error("Wasm validation failure expected");
- }
- function assert_soft_invalid(bytes) {
- try { module(bytes) } catch (e) {
- if (e instanceof WebAssembly.CompileError) return;
- throw new Error("Wasm validation failure expected");
- }
- if (soft_validate)
- throw new Error("Wasm validation failure expected");
- }
- function assert_unlinkable(bytes) {
- let mod = module(bytes);
- try { new WebAssembly.Instance(mod, registry) } catch (e) {
- if (e instanceof TypeError) return;
- }
- throw new Error("Wasm linking failure expected");
- }
- function assert_uninstantiable(bytes) {
- let mod = module(bytes);
- try { new WebAssembly.Instance(mod, registry) } catch (e) {
- if (e instanceof WebAssembly.RuntimeError) return;
- }
- throw new Error("Wasm trap expected");
- }
- function assert_trap(action) {
- try { action() } catch (e) {
- if (e instanceof WebAssembly.RuntimeError) return;
- }
- throw new Error("Wasm trap expected");
- }
- function assert_return(action, expected) {
- let actual = action();
- if (!Object.is(actual, expected)) {
- throw new Error("Wasm return value " + expected + " expected, got " + actual);
- };
- }
- function assert_return_nan(action) {
- let actual = action();
- if (!Number.isNaN(actual)) {
- throw new Error("Wasm return value NaN expected, got " + actual);
- };
- }
- assert_malformed("\x00\x61\x73\x6d\x0d\x00\x00\x00\x02\x94\x80\x80\x80\x00\x01\x08\x73\x70\x65\x63\x74\x65\x73\x74\x06\x67\x6c\x6f\x62\x61\x6c\x03\x7f\x02");
- assert_malformed("\x00\x61\x73\x6d\x0d\x00\x00\x00\x06\x86\x80\x80\x80\x00\x01\x7f\xff\x41\x00\x0b");
- assert_malformed("\x00\x61\x73\x6d\x0d\x00\x00\x00\x06\x86\x80\x80\x80\x00\x01\x7f\xd4\x41\x00\x0b");
- assert_malformed("\x00\x61\x73\x6d\x0d\x00\x00\x00\x06\x86\x80\x80\x80\x00\x01\x7f\x02\x41\x00\x0b");
- print("PASSED");
|