| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 'regress/regress-165637': [SKIP], | 360 'regress/regress-165637': [SKIP], |
| 361 | 361 |
| 362 # Skip long running test that times out in debug mode and goes OOM on NaCl. | 362 # Skip long running test that times out in debug mode and goes OOM on NaCl. |
| 363 'regress/regress-crbug-160010': [SKIP], | 363 'regress/regress-crbug-160010': [SKIP], |
| 364 | 364 |
| 365 # Bug(v8:2978). | 365 # Bug(v8:2978). |
| 366 'lithium/MathExp': [PASS, FAIL], | 366 'lithium/MathExp': [PASS, FAIL], |
| 367 | 367 |
| 368 # Lead to OOM: | 368 # Lead to OOM: |
| 369 'string-oom-*': [SKIP], | 369 'string-oom-*': [SKIP], |
| 370 |
| 371 # Crashes. |
| 372 'harmony/private': [SKIP], |
| 373 'harmony/symbols': [SKIP], |
| 370 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 374 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 371 | 375 |
| 372 ############################################################################## | 376 ############################################################################## |
| 373 ['deopt_fuzzer == True', { | 377 ['deopt_fuzzer == True', { |
| 374 | 378 |
| 375 # Skip tests that are not suitable for deoptimization fuzzing. | 379 # Skip tests that are not suitable for deoptimization fuzzing. |
| 376 'assert-opt-and-deopt': [SKIP], | 380 'assert-opt-and-deopt': [SKIP], |
| 377 'never-optimize': [SKIP], | 381 'never-optimize': [SKIP], |
| 378 'regress/regress-2185-2': [SKIP], | 382 'regress/regress-2185-2': [SKIP], |
| 379 'harmony/object-observe': [SKIP], | 383 'harmony/object-observe': [SKIP], |
| 380 'readonly': [SKIP], | 384 'readonly': [SKIP], |
| 381 'array-feedback': [SKIP], | 385 'array-feedback': [SKIP], |
| 382 | 386 |
| 383 # Deopt every n garbage collections collides with deopt every n times. | 387 # Deopt every n garbage collections collides with deopt every n times. |
| 384 'regress/regress-2653': [SKIP], | 388 'regress/regress-2653': [SKIP], |
| 385 }], # 'deopt_fuzzer == True' | 389 }], # 'deopt_fuzzer == True' |
| 386 ] | 390 ] |
| OLD | NEW |