wasm-js.status 2.28 KB
Newer Older
1 2 3 4 5
# Copyright 2018 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.

[
6

7
[ALWAYS, {
8 9 10 11 12
  # TODO(v8:10556): Remove sub-typing in the reference-types implementation
  'constructor/instantiate': [FAIL],
  'instance/constructor-caching': [FAIL],
  'instance/constructor': [FAIL],
  'proposals/js-types/constructor/instantiate': [FAIL],
13 14
  'proposals/js-types/global/constructor': [FAIL],
  'proposals/js-types/global/value-get-set': [FAIL],
15
  'proposals/js-types/instance/constructor': [FAIL],
16

17 18
  'prototypes': [FAIL],

19 20 21 22 23 24
  # Outdated proposals, will work after rebasing.
  'proposals/reference-types/global/value-get-set': [FAIL],
  'proposals/reference-types/global/constructor': [FAIL],
  'proposals/bulk-memory-operations/global/value-get-set': [FAIL],
  'proposals/bulk-memory-operations/global/constructor': [FAIL],

25
  # These are slow, and not useful to run for the proposals:
26
  'proposals/reference-types/limits': [SKIP],
27 28 29
  'proposals/bulk-memory-operations/limits': [SKIP],
  'proposals/JS-BigInt-integration/limits': [SKIP],
  'proposals/js-types/limits': [SKIP],
30 31
  # TODO(v8:9673): Enable these spec tests once they exist, and the out-dated
  # tests have been removed.
32
  'proposals/JS-BigInt-integration/module/params-long': [FAIL],
33 34
  # TODO(wasm): Update memory limit.
  'limits': [FAIL],
35 36
}], # ALWAYS

37 38 39
['arch == s390 or arch == s390x or system == aix', {
  # https://bugs.chromium.org/p/v8/issues/detail?id=8402
  'instance/constructor': [SKIP],
40
  'constructor/instantiate': [SKIP],
41 42
}],  # 'arch == s390 or arch == s390x or system == aix'

43
['mode == debug or simulator_run or variant != default or arch == arm', {
44
  # Slow, and we always have the same limits anyway.
45
  # ODroid bots don't have enough memory to run the test.
46
  'limits': [SKIP],
47
}],  # mode == debug or simulator_run or variant != default or arch == arm
48

49
##############################################################################
50
['lite_mode or variant == jitless', {
51 52
  # TODO(v8:7777): Re-enable once wasm is supported in jitless mode.
  '*': [SKIP],
53
}], # lite_mode or variant == jitless
54

55 56 57 58 59
################################################################################
['variant == stress_snapshot', {
  '*': [SKIP],  # only relevant for mjsunit tests.
}],

60
]