Chromium Code Reviews| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 189 | 189 |
| 190 # BUG(336820). TODO(bmeurer): Investigate. | 190 # BUG(336820). TODO(bmeurer): Investigate. |
| 191 'regress/regress-336820': [PASS, FAIL], | 191 'regress/regress-336820': [PASS, FAIL], |
| 192 | 192 |
| 193 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for | 193 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for |
| 194 # nosse2. Also for arm novfp3. | 194 # nosse2. Also for arm novfp3. |
| 195 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87 or arch == arm and simulator == True', PASS]], | 195 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87 or arch == arm and simulator == True', PASS]], |
| 196 | 196 |
| 197 # Skip endain dependent test for mips due to different typed views of the same | 197 # Skip endain dependent test for mips due to different typed views of the same |
| 198 # array buffer. | 198 # array buffer. |
| 199 'nans': [PASS, ['arch == mips', SKIP]], | 199 'nans': [PASS, ], |
|
Jakob Kummerow
2014/10/02 09:00:25
wut? Just remove the expectation! Or was this an a
| |
| 200 | 200 |
| 201 # This test variant makes only sense on arm. | |
| 202 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a rm, android_arm64]', SKIP]], | |
|
Jakob Kummerow
2014/10/02 09:00:25
AFAIK sdiv/udiv are always available on arm64, so
| |
| 201 }], # ALWAYS | 203 }], # ALWAYS |
| 202 | 204 |
| 203 ############################################################################## | 205 ############################################################################## |
| 204 ['gc_stress == True', { | 206 ['gc_stress == True', { |
| 205 # Skip tests not suitable for GC stress. | 207 # Skip tests not suitable for GC stress. |
| 206 'allocation-site-info': [SKIP], | 208 'allocation-site-info': [SKIP], |
| 207 'array-constructor-feedback': [SKIP], | 209 'array-constructor-feedback': [SKIP], |
| 208 'array-feedback': [SKIP], | 210 'array-feedback': [SKIP], |
| 209 'array-literal-feedback': [SKIP], | 211 'array-literal-feedback': [SKIP], |
| 210 'd8-performance-now': [SKIP], | 212 'd8-performance-now': [SKIP], |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 541 'never-optimize': [SKIP], | 543 'never-optimize': [SKIP], |
| 542 'regress/regress-2185-2': [SKIP], | 544 'regress/regress-2185-2': [SKIP], |
| 543 'harmony/object-observe': [SKIP], | 545 'harmony/object-observe': [SKIP], |
| 544 'readonly': [SKIP], | 546 'readonly': [SKIP], |
| 545 'array-feedback': [SKIP], | 547 'array-feedback': [SKIP], |
| 546 | 548 |
| 547 # Deopt every n garbage collections collides with deopt every n times. | 549 # Deopt every n garbage collections collides with deopt every n times. |
| 548 'regress/regress-2653': [SKIP], | 550 'regress/regress-2653': [SKIP], |
| 549 }], # 'deopt_fuzzer == True' | 551 }], # 'deopt_fuzzer == True' |
| 550 ] | 552 ] |
| OLD | NEW |