2019-02-26 09:22:18 +00:00
|
|
|
// 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-06-01 12:46:36 +00:00
|
|
|
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
|
2019-02-26 09:22:18 +00:00
|
|
|
|
|
|
|
(function TestAsyncCompileMultipleCodeSections() {
|
|
|
|
let binary = new Binary();
|
|
|
|
binary.emit_header();
|
2019-03-07 14:06:13 +00:00
|
|
|
binary.emit_bytes([kTypeSectionCode, 4, 1, kWasmFunctionTypeForm, 0, 0]);
|
|
|
|
binary.emit_bytes([kFunctionSectionCode, 2, 1, 0]);
|
2019-10-08 12:38:48 +00:00
|
|
|
binary.emit_bytes([kCodeSectionCode, 6, 1, 4, 0, kExprLocalGet, 0, kExprEnd]);
|
|
|
|
binary.emit_bytes([kCodeSectionCode, 6, 1, 4, 0, kExprLocalGet, 0, kExprEnd]);
|
2019-03-07 14:06:13 +00:00
|
|
|
let buffer = binary.trunc_buffer();
|
2019-02-26 09:22:18 +00:00
|
|
|
assertPromiseResult(WebAssembly.compile(buffer), assertUnreachable,
|
|
|
|
e => assertInstanceof(e, WebAssembly.CompileError));
|
|
|
|
})();
|