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