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. | 7 # These tests fail because mips does not support the correct NaN bit patterns. |
Michael Achenbach
2017/05/17 20:45:02
Could you maybe make a separate toplevel section f
predrag.rudic
2017/05/18 11:27:32
Acknowledged.
| |
8 'tests/float_misc': [PASS, ['arch == mipsel or arch == mips64el', SKIP]], | 8 'tests/float_misc': [PASS, ['arch == mipsel or arch == mips64el arch == mips o r arch == mips64', SKIP]], |
Michael Achenbach
2017/05/17 20:45:03
there's an "or" missing I guess...
| |
9 'tests/float_exprs': [PASS, ['arch == mipsel or arch == mips64el', SKIP]], | 9 'tests/float_exprs': [PASS, ['arch == mipsel or arch == mips64el arch == mips or arch == mips64', SKIP]], |
10 'tests/f32': [PASS, ['arch == mipsel or arch == mips64el', SKIP]], | 10 'tests/f32': [PASS, ['arch == mipsel or arch == mips64el arch == mips or arch == mips64', SKIP]], |
11 'tests/f64': [PASS, ['arch == mipsel or arch == mips64el', SKIP]], | 11 'tests/f64': [PASS, ['arch == mipsel or arch == mips64el arch == mips or arch == mips64', SKIP]], |
12 'tests/f32_bitwise': [PASS, ['arch == mipsel or arch == mips64el or arch == mi ps or arch == mips64', SKIP]], | |
13 'tests/f64_bitwise': [PASS, ['arch == mipsel or arch == mips64el or arch == mi ps or arch == mips64', SKIP]], | |
14 'tests/conversions': [PASS, ['arch == mipsel or arch == mips64el or arch == mi ps or arch == mips64', SKIP]], | |
12 | 15 |
13 #TODO(ahaas): Add additional stack checks on mips. | 16 #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 | 17 # 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]], | 18 'tests/skip-stack-guard-page': [PASS, ['arch == mipsel or arch == mips64el or arch == x64 or arch == ia32', SKIP]], |
16 }], # ALWAYS | 19 }], # ALWAYS |
17 | 20 |
18 ['arch == arm and not simulator_run', { | 21 ['arch == arm and not simulator_run', { |
19 # Too slow on chromebooks. | 22 # Too slow on chromebooks. |
20 'tests/br_table': [SKIP], | 23 'tests/br_table': [SKIP], |
21 }], # 'arch == arm and not simulator_run' | 24 }], # 'arch == arm and not simulator_run' |
22 | 25 |
23 ] | 26 ] |
OLD | NEW |