Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: test/wasm-spec-tests/wasm-spec-tests.status

Issue 2921293002: PPC/S390: Disable failing wasm-spec-tests (Closed)
Patch Set: include conversions.js for s390 Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 the V8 project authors. All rights reserved. 1 # Copyright 2016 the V8 project authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 [ 5 [
6 [ALWAYS, { 6 [ALWAYS, {
7 #TODO(ahaas): Add additional stack checks on mips. 7 #TODO(ahaas): Add additional stack checks on mips.
8 # Issue 6318: Stack checks for functions with huge stack frames fail on x64 an d ia32 8 # Issue 6318: Stack checks for functions with huge stack frames fail on x64 an d ia32
9 'tests/skip-stack-guard-page': [PASS, ['arch == mipsel or arch == mips64el or arch == x64 or arch == ia32', SKIP]], 9 'tests/skip-stack-guard-page': [PASS, ['arch == mipsel or arch == mips64el or arch == x64 or arch == ia32', SKIP]],
10 }], # ALWAYS 10 }], # ALWAYS
(...skipping 12 matching lines...) Expand all
23 # This test fail because mips does not support the correct NaN bit patterns. 23 # This test fail because mips does not support the correct NaN bit patterns.
24 # But it doesn't fail in simulator. 24 # But it doesn't fail in simulator.
25 'tests/conversions': [SKIP], 25 'tests/conversions': [SKIP],
26 }], # '(arch == mipsel or arch == mips64el or arch == mips or arch == mips64) a nd not simulator_run' 26 }], # '(arch == mipsel or arch == mips64el or arch == mips or arch == mips64) a nd not simulator_run'
27 27
28 ['arch == arm and not simulator_run', { 28 ['arch == arm and not simulator_run', {
29 # Too slow on chromebooks. 29 # Too slow on chromebooks.
30 'tests/br_table': [SKIP], 30 'tests/br_table': [SKIP],
31 }], # 'arch == arm and not simulator_run' 31 }], # 'arch == arm and not simulator_run'
32 32
33 ['arch == ppc or arch == ppc64', {
34 # These tests fail because ppc float min and max doesn't convert sNaN to qNaN.
35 'tests/f32': [SKIP],
36 'tests/f64': [SKIP],
37 # This test fails because ppc float to double doesn't convert sNaN to qNaN.
38 'tests/conversions': [SKIP],
39 }], # 'arch == ppc or arch == ppc64'
40
41 ['arch == s390 or arch == s390x', {
42 # These tests fail because s390 float min and max doesn't convert sNaN to qNaN .
43 'tests/f32': [SKIP],
44 'tests/f64': [SKIP],
45 }], # 'arch == s390 or arch == s390x'
46
33 ] 47 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698