| OLD | NEW |
| 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 Loading... |
| 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 ] |
| OLD | NEW |