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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 'regress/regress-634': [PASS, ['mode == debug', SKIP]], | 186 'regress/regress-634': [PASS, ['mode == debug', SKIP]], |
187 'regress/regress-634-debug': [PASS, ['mode == release', SKIP]], | 187 'regress/regress-634-debug': [PASS, ['mode == release', SKIP]], |
188 | 188 |
189 # BUG(336820). TODO(bmeurer): Investigate. | 189 # BUG(336820). TODO(bmeurer): Investigate. |
190 'regress/regress-336820': [PASS, FAIL], | 190 'regress/regress-336820': [PASS, FAIL], |
191 | 191 |
192 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for | 192 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for |
193 # nosse2. Also for arm novfp3. | 193 # nosse2. Also for arm novfp3. |
194 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87
or arch == arm and simulator == True', PASS]], | 194 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87
or arch == arm and simulator == True', PASS]], |
195 | 195 |
| 196 # Skip endain dependent test for mips due to different typed views of the same |
| 197 # array buffer. |
| 198 'nans': [PASS, ], |
| 199 |
196 # This test variant makes only sense on arm. | 200 # This test variant makes only sense on arm. |
197 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], | 201 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], |
198 | 202 |
199 # Too slow for slow variants. | 203 # Too slow for slow variants. |
200 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], | 204 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], |
201 }], # ALWAYS | 205 }], # ALWAYS |
202 | 206 |
203 ############################################################################## | 207 ############################################################################## |
204 ['gc_stress == True', { | 208 ['gc_stress == True', { |
205 # Skip tests not suitable for GC stress. | 209 # Skip tests not suitable for GC stress. |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
577 'never-optimize': [SKIP], | 581 'never-optimize': [SKIP], |
578 'regress/regress-2185-2': [SKIP], | 582 'regress/regress-2185-2': [SKIP], |
579 'harmony/object-observe': [SKIP], | 583 'harmony/object-observe': [SKIP], |
580 'readonly': [SKIP], | 584 'readonly': [SKIP], |
581 'array-feedback': [SKIP], | 585 'array-feedback': [SKIP], |
582 | 586 |
583 # Deopt every n garbage collections collides with deopt every n times. | 587 # Deopt every n garbage collections collides with deopt every n times. |
584 'regress/regress-2653': [SKIP], | 588 'regress/regress-2653': [SKIP], |
585 }], # 'deopt_fuzzer == True' | 589 }], # 'deopt_fuzzer == True' |
586 ] | 590 ] |
OLD | NEW |