| 1234567891011121314151617181920212223242526272829303132333435 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft Corporation and contributors. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- var mod = new WebAssembly.Module(readbuffer('array.wasm'));
- var a = new WebAssembly.Instance(mod).exports;
- print(a["goodload"](0));
- try {
- print(a["badload"](0));
- }
- catch(e) {
- print(e.message.includes("out of range") ? "PASSED" : "FAILED");
- }
- try {
- a["badstore"](0);
- }
- catch(e) {
- print(e.message.includes("out of range") ? "PASSED" : "FAILED");
- }
- a.goodload(65535)
- try {
- a.goodload(65536)
- }
- catch(e) {
- print(e.message.includes("out of range") ? "PASSED" : "FAILED");
- }
- a.goodstore(0)
- a.goodstore(65535)
- try {
- a.goodstore(65536)
- }
- catch(e) {
- print(e.message.includes("out of range") ? "PASSED" : "FAILED");
- }
|