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 # These tests fail because mips does not support the correct NaN bit patterns. | |
8 'tests/float_misc': [PASS, ['arch == mipsel or arch == mips64el', SKIP]], | |
9 'tests/float_exprs': [PASS, ['arch == mipsel or arch == mips64el', SKIP]], | |
10 'tests/f32': [PASS, ['arch == mipsel or arch == mips64el', SKIP]], | |
11 'tests/f64': [PASS, ['arch == mipsel or arch == mips64el', SKIP]], | |
12 | |
13 #TODO(ahaas): Add additional stack checks on mips. | 7 #TODO(ahaas): Add additional stack checks on mips. |
14 # 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 |
15 '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]], |
16 }], # ALWAYS | 10 }], # ALWAYS |
17 | 11 |
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. | |
14 'tests/float_misc': [SKIP], | |
15 'tests/float_exprs': [SKIP], | |
16 'tests/f32': [SKIP], | |
17 'tests/f64': [SKIP], | |
18 'tests/f32_bitwise': [SKIP], | |
19 'tests/f64_bitwise': [SKIP], | |
20 'tests/conversions': [SKIP], | |
ivica.bogosavljevic
2017/05/18 15:13:00
Could you please check if these tests are passing
predrag.rudic
2017/05/19 13:02:19
Only tests/conversions don't fail on all platforms
| |
21 }], # 'arch == mipsel or arch == mips64el or arch == mips or arch == mips64' | |
22 | |
18 ['arch == arm and not simulator_run', { | 23 ['arch == arm and not simulator_run', { |
19 # Too slow on chromebooks. | 24 # Too slow on chromebooks. |
20 'tests/br_table': [SKIP], | 25 'tests/br_table': [SKIP], |
21 }], # 'arch == arm and not simulator_run' | 26 }], # 'arch == arm and not simulator_run' |
22 | 27 |
23 ] | 28 ] |
OLD | NEW |