| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 # Requires bigger stack size in the Genesis and if stack size is increased, | 245 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 246 # the test requires too much time to run. However, the problem test covers | 246 # the test requires too much time to run. However, the problem test covers |
| 247 # should be platform-independent. | 247 # should be platform-independent. |
| 248 'regress/regress-1132': [SKIP], | 248 'regress/regress-1132': [SKIP], |
| 249 | 249 |
| 250 # Poor performance for NaCl V8 causes an assertion failure for this test. | 250 # Poor performance for NaCl V8 causes an assertion failure for this test. |
| 251 'regress/regress-165637': [SKIP], | 251 'regress/regress-165637': [SKIP], |
| 252 | 252 |
| 253 # Skip long running test that times out in debug mode and goes OOM on NaCl. | 253 # Skip long running test that times out in debug mode and goes OOM on NaCl. |
| 254 'regress/regress-crbug-160010': [SKIP], | 254 'regress/regress-crbug-160010': [SKIP], |
| 255 |
| 256 # Bug(v8:2978). |
| 257 'lithium/MathExp': [PASS, FAIL], |
| 255 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 258 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 256 | 259 |
| 257 ############################################################################## | 260 ############################################################################## |
| 258 ['deopt_fuzzer == True', { | 261 ['deopt_fuzzer == True', { |
| 259 | 262 |
| 260 # Skip tests that are not suitable for deoptimization fuzzing. | 263 # Skip tests that are not suitable for deoptimization fuzzing. |
| 261 'assert-opt-and-deopt': [SKIP], | 264 'assert-opt-and-deopt': [SKIP], |
| 262 'never-optimize': [SKIP], | 265 'never-optimize': [SKIP], |
| 263 'regress/regress-2185-2': [SKIP], | 266 'regress/regress-2185-2': [SKIP], |
| 264 'harmony/object-observe': [SKIP], | 267 'harmony/object-observe': [SKIP], |
| 265 'readonly': [SKIP], | 268 'readonly': [SKIP], |
| 266 'array-feedback': [SKIP], | 269 'array-feedback': [SKIP], |
| 267 | 270 |
| 268 # Deopt every n garbage collections collides with deopt every n times. | 271 # Deopt every n garbage collections collides with deopt every n times. |
| 269 'regress/regress-2653': [SKIP], | 272 'regress/regress-2653': [SKIP], |
| 270 }], # 'deopt_fuzzer == True' | 273 }], # 'deopt_fuzzer == True' |
| 271 ] | 274 ] |
| OLD | NEW |