wasm-spec-tests.status 4.93 KB
Newer Older
1 2 3 4 5 6
# 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, {
7
  'skip-stack-guard-page': [PASS, ['((arch == ppc or arch == ppc64 or arch == s390 or arch == s390x) and simulator_run)', SKIP]],
8

9 10 11
  # 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.
12
  'linking': [FAIL],
13
  'binary-leb128': [FAIL],
14 15
  'elem': [FAIL],
  'data': [FAIL],
16

17
  # TODO(wasm): Roll newest tests into "js-types" repository.
18 19 20
  'proposals/js-types/exports': [FAIL],
  'proposals/js-types/globals': [FAIL],
  'proposals/js-types/linking': [FAIL],
21

22 23 24 25 26 27 28 29 30 31
  # TODO(wasm): Roll newest tests into "tail-call" repository.
  'proposals/tail-call/data': [FAIL],
  'proposals/tail-call/elem': [FAIL],
  'proposals/tail-call/exports': [FAIL],
  'proposals/tail-call/func': [FAIL],
  'proposals/tail-call/globals': [FAIL],
  'proposals/tail-call/imports': [FAIL],
  'proposals/tail-call/linking': [FAIL],
  'proposals/tail-call/type': [FAIL],

32
  # This test requires the reftypes flag to be disabled.
33
  'proposals/bulk-memory-operations/imports': [FAIL],
34 35
}],  # ALWAYS

36 37
['arch == mipsel or arch == mips64el or arch == mips or arch == mips64', {
  # These tests fail because mips does not support the correct NaN bit patterns.
38 39 40 41 42 43 44 45
  '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],
46 47 48 49 50 51 52
  '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],
53 54 55 56 57 58
  'proposals/bulk-memory-operations/f32': [SKIP],
  'proposals/bulk-memory-operations/f64': [SKIP],
  'proposals/reference-types/f32': [SKIP],
  'proposals/reference-types/f64': [SKIP],
  'proposals/bulk-memory-operations/float_misc': [SKIP],
  'proposals/reference-types/float_misc': [SKIP],
59 60 61 62 63
  'proposals/tail-call/f32': [SKIP],
  'proposals/tail-call/f32_bitwise': [SKIP],
  'proposals/tail-call/f64': [SKIP],
  'proposals/tail-call/f64_bitwise': [SKIP],
  'proposals/tail-call/float_exprs': [SKIP],
64
  'proposals/tail-call/float_misc': [SKIP],
65
  'proposals/tail-call/conversions': [SKIP],
66 67 68 69 70
}],  # '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.
71
  'conversions': [SKIP],
72 73
}],  # '(arch == mipsel or arch == mips64el or arch == mips or arch == mips64) and not simulator_run'

74 75 76 77 78 79
['(arch == mipsel or arch == mips64el) and simulator_run', {
  # These tests need larger stack size on simulator.
  'skip-stack-guard-page': '--sim-stack-size=8192',
  'proposals/tail-call/skip-stack-guard-page': '--sim-stack-size=8192',
}],  # '(arch == mipsel or arch == mips64el) and simulator_run'

80 81
['arch == ppc or arch == ppc64', {
  # These tests fail because ppc float min and max doesn't convert sNaN to qNaN.
82 83
  'f32': [SKIP],
  'f64': [SKIP],
84 85
  'proposals/js-types/f32': [SKIP],
  'proposals/js-types/f64': [SKIP],
86 87 88 89
  'proposals/bulk-memory-operations/f32': [SKIP],
  'proposals/bulk-memory-operations/f64': [SKIP],
  'proposals/reference-types/f32': [SKIP],
  'proposals/reference-types/f64': [SKIP],
90 91
  'proposals/tail-call/f32': [SKIP],
  'proposals/tail-call/f64': [SKIP],
92
  # This test fails because ppc float to double doesn't convert sNaN to qNaN.
93
  'conversions': [SKIP],
94
  'proposals/js-types/conversions': [SKIP],
95 96
  'proposals/bulk-memory-operations/conversions': [SKIP],
  'proposals/reference-types/conversions':  [SKIP],
97
  'proposals/tail-call/conversions':  [SKIP],
98 99 100 101
}],  # '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.
102 103
  'f32': [SKIP],
  'f64': [SKIP],
104 105
  'proposals/js-types/f32': [SKIP],
  'proposals/js-types/f64': [SKIP],
106 107 108 109
  'proposals/bulk-memory-operations/f32': [SKIP],
  'proposals/bulk-memory-operations/f64': [SKIP],
  'proposals/reference-types/f32': [SKIP],
  'proposals/reference-types/f64': [SKIP],
110 111
  'proposals/tail-call/f32': [SKIP],
  'proposals/tail-call/f64': [SKIP],
112 113
}],  # 'arch == s390 or arch == s390x'

114
##############################################################################
115
['lite_mode or variant == jitless', {
116 117
  # TODO(v8:7777): Re-enable once wasm is supported in jitless mode.
  '*': [SKIP],
118
}], # lite_mode or variant == jitless
119

120 121 122 123
################################################################################
['variant == stress_snapshot', {
  '*': [SKIP],  # only relevant for mjsunit tests.
}],
124

125
]