2017-04-27 12:28:05 +00:00
# Copyright 2016 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.
[
[ALWAYS, {
#TODO(ahaas): Add additional stack checks on mips.
2019-08-27 14:14:34 +00:00
'skip-stack-guard-page': [PASS, ['arch == mipsel or arch == mips64el or ((arch == ppc or arch == ppc64 or arch == s390 or arch == s390x) and simulator_run)', SKIP]],
2019-04-16 22:14:05 +00:00
# TODO(v8:9144): The MVP behavior when bounds-checking segments changed in
# the bulk-memory proposal. Since we've enabled bulk-memory by default, we
# need to update to use its testsuite.
2019-08-27 14:14:34 +00:00
'linking': [FAIL],
2019-09-16 15:40:20 +00:00
'binary-leb128': [FAIL],
2019-08-27 14:14:34 +00:00
'elem': [FAIL],
'data': [FAIL],
2019-08-28 11:26:02 +00:00
# TODO(mstarzinger): Roll newest tests into "js-types" repository.
'proposals/js-types/exports': [FAIL],
'proposals/js-types/globals': [FAIL],
'proposals/js-types/linking': [FAIL],
2019-10-17 09:57:56 +00:00
# TODO(v8:9865): Throwing behavior changed for these tests.
'proposals/bulk-memory-operations/linking': [FAIL],
'proposals/bulk-memory-operations/bulk': [FAIL],
'proposals/bulk-memory-operations/elem': [FAIL],
'proposals/bulk-memory-operations/data': [FAIL],
# TODO(thibaudm): Spec tests do not check multi-return functions correctly.
'proposals/multi-value/call': [FAIL],
'proposals/multi-value/if': [FAIL],
'proposals/multi-value/func': [FAIL],
2017-04-27 12:28:05 +00:00
}], # ALWAYS
2017-05-22 10:41:53 +00:00
['arch == mipsel or arch == mips64el or arch == mips or arch == mips64', {
# These tests fail because mips does not support the correct NaN bit patterns.
2019-08-27 14:14:34 +00:00
'float_misc': [SKIP],
'float_exprs': [SKIP],
'f32': [SKIP],
'f64': [SKIP],
'f32_bitwise': [SKIP],
'f64_bitwise': [SKIP],
'proposals/reference-types/conversions': [SKIP],
'proposals/bulk-memory-operations/conversions': [SKIP],
2019-09-04 11:53:50 +00:00
'proposals/js-types/f32': [SKIP],
'proposals/js-types/f64': [SKIP],
'proposals/js-types/f32_bitwise': [SKIP],
'proposals/js-types/f64_bitwise': [SKIP],
'proposals/js-types/float_exprs': [SKIP],
'proposals/js-types/float_misc': [SKIP],
'proposals/js-types/conversions': [SKIP],
2017-05-22 10:41:53 +00:00
}], # 'arch == mipsel or arch == mips64el or arch == mips or arch == mips64'
['(arch == mipsel or arch == mips64el or arch == mips or arch == mips64) and not simulator_run', {
# This test fail because mips does not support the correct NaN bit patterns.
# But it doesn't fail in simulator.
2019-08-27 14:14:34 +00:00
'conversions': [SKIP],
2017-05-22 10:41:53 +00:00
}], # '(arch == mipsel or arch == mips64el or arch == mips or arch == mips64) and not simulator_run'
2017-04-28 07:35:07 +00:00
['arch == arm and not simulator_run', {
# Too slow on chromebooks.
2019-08-27 14:14:34 +00:00
'br_table': [SKIP],
2017-04-28 07:35:07 +00:00
}], # 'arch == arm and not simulator_run'
2017-06-06 19:54:56 +00:00
['arch == ppc or arch == ppc64', {
# These tests fail because ppc float min and max doesn't convert sNaN to qNaN.
2019-08-27 14:14:34 +00:00
'f32': [SKIP],
'f64': [SKIP],
2019-08-28 18:31:48 +00:00
'proposals/js-types/f32': [SKIP],
'proposals/js-types/f64': [SKIP],
2017-06-06 19:54:56 +00:00
# This test fails because ppc float to double doesn't convert sNaN to qNaN.
2019-08-27 14:14:34 +00:00
'conversions': [SKIP],
2019-08-28 18:31:48 +00:00
'proposals/reference-types/conversions': [SKIP],
'proposals/bulk-memory-operations/conversions': [SKIP],
'proposals/js-types/conversions': [SKIP],
2017-06-06 19:54:56 +00:00
}], # 'arch == ppc or arch == ppc64'
['arch == s390 or arch == s390x', {
# These tests fail because s390 float min and max doesn't convert sNaN to qNaN.
2019-08-27 14:14:34 +00:00
'f32': [SKIP],
'f64': [SKIP],
2019-08-28 18:31:48 +00:00
'proposals/js-types/f32': [SKIP],
'proposals/js-types/f64': [SKIP],
2017-06-06 19:54:56 +00:00
}], # 'arch == s390 or arch == s390x'
2019-01-10 10:04:51 +00:00
##############################################################################
2019-02-04 10:24:00 +00:00
['lite_mode or variant == jitless', {
2019-01-10 10:04:51 +00:00
# TODO(v8:7777): Re-enable once wasm is supported in jitless mode.
'*': [SKIP],
2019-02-04 10:24:00 +00:00
}], # lite_mode or variant == jitless
2019-01-10 10:04:51 +00:00
2017-04-27 12:28:05 +00:00
]