Chromium Code Reviews| 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 or ((arch == ppc or arch == ppc64 or arch == s390 or arch == s390x) and simulator_run)', SKIP]], | 9 'tests/skip-stack-guard-page': [PASS, ['arch == mipsel or arch == mips64el or arch == x64 or arch == ia32 or ((arch == ppc or arch == ppc64 or arch == s390 or arch == s390x) and simulator_run == True)', SKIP]], |
|
Michael Achenbach
2017/06/28 06:42:35
Are you sure this fixes it? https://cs.chromium.or
| |
| 10 }], # ALWAYS | 10 }], # ALWAYS |
| 11 | 11 |
| 12 ['arch == mipsel or arch == mips64el or arch == mips or arch == mips64', { | 12 ['arch == mipsel or arch == mips64el or arch == mips or arch == mips64', { |
| 13 # These tests fail because mips does not support the correct NaN bit patterns. | 13 # These tests fail because mips does not support the correct NaN bit patterns. |
| 14 'tests/float_misc': [SKIP], | 14 'tests/float_misc': [SKIP], |
| 15 'tests/float_exprs': [SKIP], | 15 'tests/float_exprs': [SKIP], |
| 16 'tests/f32': [SKIP], | 16 'tests/f32': [SKIP], |
| 17 'tests/f64': [SKIP], | 17 'tests/f64': [SKIP], |
| 18 'tests/f32_bitwise': [SKIP], | 18 'tests/f32_bitwise': [SKIP], |
| 19 'tests/f64_bitwise': [SKIP], | 19 'tests/f64_bitwise': [SKIP], |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 38 'tests/conversions': [SKIP], | 38 'tests/conversions': [SKIP], |
| 39 }], # 'arch == ppc or arch == ppc64' | 39 }], # 'arch == ppc or arch == ppc64' |
| 40 | 40 |
| 41 ['arch == s390 or arch == s390x', { | 41 ['arch == s390 or arch == s390x', { |
| 42 # These tests fail because s390 float min and max doesn't convert sNaN to qNaN . | 42 # These tests fail because s390 float min and max doesn't convert sNaN to qNaN . |
| 43 'tests/f32': [SKIP], | 43 'tests/f32': [SKIP], |
| 44 'tests/f64': [SKIP], | 44 'tests/f64': [SKIP], |
| 45 }], # 'arch == s390 or arch == s390x' | 45 }], # 'arch == s390 or arch == s390x' |
| 46 | 46 |
| 47 ] | 47 ] |
| OLD | NEW |