2019-03-15 18:35:06 +05:30
|
|
|
// Copyright 2019 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: --wasm-test-streaming
|
|
|
|
|
2021-08-29 14:20:49 +02:00
|
|
|
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
|
2019-03-15 18:35:06 +05:30
|
|
|
|
|
|
|
(function TestAsyncCompileMultipleCodeSections() {
|
|
|
|
let binary = new Binary();
|
|
|
|
binary.emit_header();
|
2019-05-28 08:46:21 -04:00
|
|
|
binary.emit_bytes([kTypeSectionCode, 4, 1, kWasmFunctionTypeForm, 0, 0]);
|
|
|
|
binary.emit_bytes([kFunctionSectionCode, 2, 1, 0]);
|
2019-11-08 15:39:11 +01:00
|
|
|
binary.emit_bytes([kCodeSectionCode, 6, 1, 4, 0, kExprLocalGet, 0, kExprEnd]);
|
|
|
|
binary.emit_bytes([kCodeSectionCode, 6, 1, 4, 0, kExprLocalGet, 0, kExprEnd]);
|
2019-05-28 08:46:21 -04:00
|
|
|
let buffer = binary.trunc_buffer();
|
2019-03-15 18:35:06 +05:30
|
|
|
assertPromiseResult(WebAssembly.compile(buffer), assertUnreachable,
|
|
|
|
e => assertInstanceof(e, WebAssembly.CompileError));
|
|
|
|
})();
|