mirror of
https://github.com/tc39/test262.git
synced 2025-05-04 06:50:32 +02:00
* [javascriptcore-test262-automation] changes from git@github.com:WebKit/webkit.git at sha 949e26452cfa153a7f4afe593da97e2fe9e1b706 on Tue Jul 03 2018 14:35:15 GMT-0400 (Eastern Daylight Time)
10 lines
466 B
JavaScript
10 lines
466 B
JavaScript
import * as assert from '../assert.js';
|
|
import * as utilities from '../utilities.js';
|
|
|
|
for (let version = 0; version < 256; ++version) {
|
|
if (version === 1)
|
|
continue;
|
|
const emptyModuleArray = Uint8Array.of(0x0, 0x61, 0x73, 0x6d, version, 0x00, 0x00, 0x00);
|
|
assert.throws(() => new WebAssembly.Module(emptyModuleArray), WebAssembly.CompileError, `WebAssembly.Module doesn't parse at byte 8 / 8: unexpected version number ${version} expected 1`);
|
|
}
|