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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 'third_party/regexp-pcre/regexp-pcre': [PASS, NO_VARIANTS], | 194 'third_party/regexp-pcre/regexp-pcre': [PASS, NO_VARIANTS], |
195 | 195 |
196 ############################################################################## | 196 ############################################################################## |
197 # No need to waste time for this test. | 197 # No need to waste time for this test. |
198 'd8-performance-now': [PASS, NO_VARIANTS], | 198 'd8-performance-now': [PASS, NO_VARIANTS], |
199 'regress/regress-crbug-491062': [PASS, NO_VARIANTS], | 199 'regress/regress-crbug-491062': [PASS, NO_VARIANTS], |
200 | 200 |
201 # Issue 488: this test sometimes times out. | 201 # Issue 488: this test sometimes times out. |
202 'array-constructor': [PASS, TIMEOUT], | 202 'array-constructor': [PASS, TIMEOUT], |
203 | 203 |
| 204 # Issue 4413: this test sometimes times out with TSAN because we trigger |
| 205 # the slow path in C++ with holey arrays in Function.prototype.apply. |
| 206 # TODO(bmeurer): Add fast support for holey arrays in apply. |
| 207 'apply': [PASS, TIMEOUT], |
| 208 |
204 # Very slow on ARM and MIPS, contains no architecture dependent code. | 209 # Very slow on ARM and MIPS, contains no architecture dependent code. |
205 '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]], | 210 '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]], |
206 '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]], | 211 '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]], |
207 '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]], | 212 '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]], |
208 | 213 |
209 ############################################################################## | 214 ############################################################################## |
210 # This test expects to reach a certain recursion depth, which may not work | 215 # This test expects to reach a certain recursion depth, which may not work |
211 # for debug mode. | 216 # for debug mode. |
212 'json-recursive': [PASS, ['mode == debug', PASS, FAIL]], | 217 'json-recursive': [PASS, ['mode == debug', PASS, FAIL]], |
213 | 218 |
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1094 | 1099 |
1095 ############################################################################## | 1100 ############################################################################## |
1096 ['gcov_coverage', { | 1101 ['gcov_coverage', { |
1097 # Tests taking too long. | 1102 # Tests taking too long. |
1098 'array-functions-prototype-misc': [SKIP], | 1103 'array-functions-prototype-misc': [SKIP], |
1099 'strong/implicit-conversions': [SKIP], | 1104 'strong/implicit-conversions': [SKIP], |
1100 'strong/load-element-mutate-backing-store': [SKIP], | 1105 'strong/load-element-mutate-backing-store': [SKIP], |
1101 }], # 'gcov_coverage' | 1106 }], # 'gcov_coverage' |
1102 | 1107 |
1103 ] | 1108 ] |
OLD | NEW |