| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'regress/regress-336820': [PASS, FAIL], | 120 'regress/regress-336820': [PASS, FAIL], |
| 121 | 121 |
| 122 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for | 122 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for |
| 123 # nosse2. Also for arm novfp3. | 123 # nosse2. Also for arm novfp3. |
| 124 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == ia32
or arch == arm and simulator == True', PASS]], | 124 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == ia32
or arch == arm and simulator == True', PASS]], |
| 125 | 125 |
| 126 # Skip endain dependent test for mips due to different typed views of the same | 126 # Skip endain dependent test for mips due to different typed views of the same |
| 127 # array buffer. | 127 # array buffer. |
| 128 'nans': [PASS, ['arch == mips', SKIP]], | 128 'nans': [PASS, ['arch == mips', SKIP]], |
| 129 | 129 |
| 130 # Object.observe is disabled. | |
| 131 'es6/promises': [SKIP], | |
| 132 'array-push7': [SKIP], | |
| 133 'harmony/microtask-delivery': [SKIP], | |
| 134 'es7/object-observe': [SKIP], | |
| 135 'harmony/regress/regress-observe-empty-double-array': [SKIP], | |
| 136 'regress/regress-356589': [SKIP], | |
| 137 'regress/regress-observe-map-cache': [SKIP], | |
| 138 }], # ALWAYS | 130 }], # ALWAYS |
| 139 | 131 |
| 140 ############################################################################## | 132 ############################################################################## |
| 141 ['gc_stress == True', { | 133 ['gc_stress == True', { |
| 142 # Skip tests not suitable for GC stress. | 134 # Skip tests not suitable for GC stress. |
| 143 'allocation-site-info': [SKIP], | 135 'allocation-site-info': [SKIP], |
| 144 'array-constructor-feedback': [SKIP], | 136 'array-constructor-feedback': [SKIP], |
| 145 'array-feedback': [SKIP], | 137 'array-feedback': [SKIP], |
| 146 'array-literal-feedback': [SKIP], | 138 'array-literal-feedback': [SKIP], |
| 147 'd8-performance-now': [SKIP], | 139 'd8-performance-now': [SKIP], |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 'never-optimize': [SKIP], | 390 'never-optimize': [SKIP], |
| 399 'regress/regress-2185-2': [SKIP], | 391 'regress/regress-2185-2': [SKIP], |
| 400 'harmony/object-observe': [SKIP], | 392 'harmony/object-observe': [SKIP], |
| 401 'readonly': [SKIP], | 393 'readonly': [SKIP], |
| 402 'array-feedback': [SKIP], | 394 'array-feedback': [SKIP], |
| 403 | 395 |
| 404 # Deopt every n garbage collections collides with deopt every n times. | 396 # Deopt every n garbage collections collides with deopt every n times. |
| 405 'regress/regress-2653': [SKIP], | 397 'regress/regress-2653': [SKIP], |
| 406 }], # 'deopt_fuzzer == True' | 398 }], # 'deopt_fuzzer == True' |
| 407 ] | 399 ] |
| OLD | NEW |