3b416c67f5
Operand values in Bytecodes.DecodeBytecodeAndOperands test are encoded in little endian format. The test calls Bytecodes::Decode function which reads the operands but the values are byte swapped on big endian machines. Added big endian encoded data which decodes correctly on BE machines. BUG= Review URL: https://codereview.chromium.org/1881423002 Cr-Commit-Position: refs/heads/master@{#35447}
16 lines
533 B
Plaintext
16 lines
533 B
Plaintext
# Copyright 2014 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.
|
|
|
|
[
|
|
['byteorder == big', {
|
|
# TODO(mips-team): Fix Wasm for big-endian.
|
|
'WasmModuleVerifyTest*': [SKIP],
|
|
'WasmFunctionVerifyTest*': [SKIP],
|
|
'WasmDecoderTest.TableSwitch*': [SKIP],
|
|
'WasmDecoderTest.AllLoadMemCombinations': [SKIP],
|
|
'AstDecoderTest.AllLoadMemCombinations': [SKIP],
|
|
'AstDecoderTest.AllStoreMemCombinations': [SKIP],
|
|
}], # 'byteorder == big'
|
|
]
|