| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 | 354 |
| 355 # Requires bigger stack size in the Genesis and if stack size is increased, | 355 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 356 # the test requires too much time to run. However, the problem test covers | 356 # the test requires too much time to run. However, the problem test covers |
| 357 # should be platform-independent. | 357 # should be platform-independent. |
| 358 'regress/regress-1132': [SKIP], | 358 'regress/regress-1132': [SKIP], |
| 359 | 359 |
| 360 # Currently always deopt on minus zero | 360 # Currently always deopt on minus zero |
| 361 'math-floor-of-div-minus-zero': [SKIP], | 361 'math-floor-of-div-minus-zero': [SKIP], |
| 362 | 362 |
| 363 # BUG(v8:3457). | 363 # BUG(v8:3457). |
| 364 'deserialize-reference': [PASS, FAIL], | 364 'deserialize-reference': [SKIP], |
| 365 }], # 'arch == mipsel or arch == mips' | 365 }], # 'arch == mipsel or arch == mips' |
| 366 | 366 |
| 367 ############################################################################## | 367 ############################################################################## |
| 368 ['arch == mips64el', { | 368 ['arch == mips64el', { |
| 369 | 369 |
| 370 # Slow tests which times out in debug mode. | 370 # Slow tests which times out in debug mode. |
| 371 'try': [PASS, ['mode == debug', SKIP]], | 371 'try': [PASS, ['mode == debug', SKIP]], |
| 372 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 372 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
| 373 'array-constructor': [PASS, ['mode == debug', SKIP]], | 373 'array-constructor': [PASS, ['mode == debug', SKIP]], |
| 374 | 374 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 'never-optimize': [SKIP], | 476 'never-optimize': [SKIP], |
| 477 'regress/regress-2185-2': [SKIP], | 477 'regress/regress-2185-2': [SKIP], |
| 478 'harmony/object-observe': [SKIP], | 478 'harmony/object-observe': [SKIP], |
| 479 'readonly': [SKIP], | 479 'readonly': [SKIP], |
| 480 'array-feedback': [SKIP], | 480 'array-feedback': [SKIP], |
| 481 | 481 |
| 482 # Deopt every n garbage collections collides with deopt every n times. | 482 # Deopt every n garbage collections collides with deopt every n times. |
| 483 'regress/regress-2653': [SKIP], | 483 'regress/regress-2653': [SKIP], |
| 484 }], # 'deopt_fuzzer == True' | 484 }], # 'deopt_fuzzer == True' |
| 485 ] | 485 ] |
| OLD | NEW |