2015-12-11 12:26:16 +00:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2015-12-17 10:54:08 +00:00
|
|
|
// Flags: --expose-wasm
|
|
|
|
|
2015-12-11 12:26:16 +00:00
|
|
|
load("test/mjsunit/wasm/wasm-constants.js");
|
|
|
|
|
|
|
|
try {
|
|
|
|
var data = bytes(
|
2016-04-29 09:39:26 +00:00
|
|
|
kWasmFunctionTypeForm, 0, kAstStmt, // signature
|
|
|
|
kDeclNoLocals, // --
|
|
|
|
kExprNop // body
|
2015-12-11 12:26:16 +00:00
|
|
|
);
|
|
|
|
|
2016-03-08 14:46:54 +00:00
|
|
|
Wasm.verifyFunction(data);
|
2015-12-11 12:26:16 +00:00
|
|
|
print("ok");
|
|
|
|
} catch (e) {
|
|
|
|
assertTrue(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var threw = false;
|
|
|
|
try {
|
|
|
|
var data = bytes(
|
2016-04-29 09:39:26 +00:00
|
|
|
kWasmFunctionTypeForm, 0, 1, kAstI32, // signature
|
|
|
|
kDeclNoLocals, // --
|
2016-04-29 09:15:26 +00:00
|
|
|
kExprBlock, kExprNop, kExprNop, kExprEnd // body
|
2015-12-11 12:26:16 +00:00
|
|
|
);
|
|
|
|
|
2016-03-08 14:46:54 +00:00
|
|
|
Wasm.verifyFunction(data);
|
2015-12-11 12:26:16 +00:00
|
|
|
print("not ok");
|
|
|
|
} catch (e) {
|
|
|
|
print("ok: " + e);
|
|
|
|
threw = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
assertTrue(threw);
|