OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 # Only RegExp stuff tested, no need for extensive optimizing compiler tests. | 200 # Only RegExp stuff tested, no need for extensive optimizing compiler tests. |
201 'regexp-global': [PASS, NO_VARIANTS], | 201 'regexp-global': [PASS, NO_VARIANTS], |
202 'third_party/regexp-pcre/regexp-pcre': [PASS, NO_VARIANTS], | 202 'third_party/regexp-pcre/regexp-pcre': [PASS, NO_VARIANTS], |
203 | 203 |
204 ############################################################################## | 204 ############################################################################## |
205 # No need to waste time for this test. | 205 # No need to waste time for this test. |
206 'd8-performance-now': [PASS, NO_VARIANTS], | 206 'd8-performance-now': [PASS, NO_VARIANTS], |
207 'regress/regress-crbug-491062': [PASS, NO_VARIANTS], | 207 'regress/regress-crbug-491062': [PASS, NO_VARIANTS], |
208 | 208 |
209 # Issue 488: this test sometimes times out. | 209 # Issue 488: this test sometimes times out. |
210 'array-constructor': [PASS, TIMEOUT], | 210 # TODO(arm): This seems to flush out a bug on arm with simulator. |
| 211 'array-constructor': [PASS, TIMEOUT, ['arch == arm and simulator == True', SKI
P]], |
211 | 212 |
212 # Issue 4413: this test sometimes times out with TSAN because we trigger | 213 # Issue 4413: this test sometimes times out with TSAN because we trigger |
213 # the slow path in C++ with holey arrays in Function.prototype.apply. | 214 # the slow path in C++ with holey arrays in Function.prototype.apply. |
214 # TODO(bmeurer): Add fast support for holey arrays in apply. | 215 # TODO(bmeurer): Add fast support for holey arrays in apply. |
215 'apply': [PASS, TIMEOUT], | 216 'apply': [PASS, TIMEOUT], |
216 | 217 |
217 # Very slow on ARM and MIPS, contains no architecture dependent code. | 218 # Very slow on ARM and MIPS, contains no architecture dependent code. |
218 'unicode-case-overoptimization': [PASS, NO_VARIANTS, ['arch == arm or arch ==
arm64 or arch == android_arm or arch == android_arm64 or arch == mipsel or arch
== mips64el or arch == mips64 or arch == mips', TIMEOUT]], | 219 'unicode-case-overoptimization': [PASS, NO_VARIANTS, ['arch == arm or arch ==
arm64 or arch == android_arm or arch == android_arm64 or arch == mipsel or arch
== mips64el or arch == mips64 or arch == mips', TIMEOUT]], |
219 'regress/regress-3976': [PASS, NO_VARIANTS, ['arch == arm or arch == arm64 or
arch == android_arm or arch == android_arm64 or arch == mipsel or arch == mips64
el or arch == mips64 or arch == mips', SKIP]], | 220 'regress/regress-3976': [PASS, NO_VARIANTS, ['arch == arm or arch == arm64 or
arch == android_arm or arch == android_arm64 or arch == mipsel or arch == mips64
el or arch == mips64 or arch == mips', SKIP]], |
220 'regress/regress-crbug-482998': [PASS, NO_VARIANTS, ['arch == arm or arch == a
rm64 or arch == android_arm or arch == android_arm64 or arch == mipsel or arch =
= mips64el or arch == mips', SKIP]], | 221 'regress/regress-crbug-482998': [PASS, NO_VARIANTS, ['arch == arm or arch == a
rm64 or arch == android_arm or arch == android_arm64 or arch == mipsel or arch =
= mips64el or arch == mips', SKIP]], |
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
917 # Tests taking too long. | 918 # Tests taking too long. |
918 'array-functions-prototype-misc': [SKIP], | 919 'array-functions-prototype-misc': [SKIP], |
919 'strong/implicit-conversions': [SKIP], | 920 'strong/implicit-conversions': [SKIP], |
920 'strong/load-element-mutate-backing-store': [SKIP], | 921 'strong/load-element-mutate-backing-store': [SKIP], |
921 | 922 |
922 # Stack overflow. | 923 # Stack overflow. |
923 'big-array-literal': [SKIP], | 924 'big-array-literal': [SKIP], |
924 }], # 'gcov_coverage' | 925 }], # 'gcov_coverage' |
925 | 926 |
926 ] | 927 ] |
OLD | NEW |