| OLD | NEW |
| 1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 # in interpreter. | 376 # in interpreter. |
| 377 'test-heap/CompilationCacheCachingBehavior': [FAIL], | 377 'test-heap/CompilationCacheCachingBehavior': [FAIL], |
| 378 | 378 |
| 379 # BUG(4680): Missing type feedback makes optimistic optimizations fail. | 379 # BUG(4680): Missing type feedback makes optimistic optimizations fail. |
| 380 'test-cpu-profiler/CollectDeoptEvents': [FAIL], | 380 'test-cpu-profiler/CollectDeoptEvents': [FAIL], |
| 381 'test-cpu-profiler/DeoptUntrackedFunction': [SKIP], | 381 'test-cpu-profiler/DeoptUntrackedFunction': [SKIP], |
| 382 | 382 |
| 383 # BUG(4751). Flaky with Ignition. | 383 # BUG(4751). Flaky with Ignition. |
| 384 'test-cpu-profiler/JsNativeJsSample': [SKIP], | 384 'test-cpu-profiler/JsNativeJsSample': [SKIP], |
| 385 | 385 |
| 386 # TurboFan cpu profiler result is different. | |
| 387 'test-cpu-profiler/DeoptAtFirstLevelInlinedSource': [FAIL], | |
| 388 'test-cpu-profiler/DeoptAtSecondLevelInlinedSource': [FAIL], | |
| 389 | |
| 390 # TODO(vogelheim,5548): Turbofan does support cached accessors. | 386 # TODO(vogelheim,5548): Turbofan does support cached accessors. |
| 391 'test-api-accessors/CachedAccessorCrankshaft': [FAIL], | 387 'test-api-accessors/CachedAccessorCrankshaft': [FAIL], |
| 392 | 388 |
| 393 # BUG(5193): Flaky. | 389 # BUG(5193): Flaky. |
| 394 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]], | 390 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]], |
| 395 }], # variant == turbofan or variant == ignition_turbofan | 391 }], # variant == turbofan or variant == ignition_turbofan |
| 396 | 392 |
| 397 ############################################################################## | 393 ############################################################################## |
| 398 ['variant != ignition and variant != ignition_staging and variant != ignition_tu
rbofan', { | 394 ['variant != ignition and variant != ignition_staging and variant != ignition_tu
rbofan', { |
| 399 # Ongoing implementation of modules. | 395 # Ongoing implementation of modules. |
| 400 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 | 396 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 |
| 401 'test-modules/*': [SKIP], | 397 'test-modules/*': [SKIP], |
| 402 }], # variant != ignition and variant != ignition_staging and variant != igniti
on_turbofan | 398 }], # variant != ignition and variant != ignition_staging and variant != igniti
on_turbofan |
| 403 | 399 |
| 404 ############################################################################## | 400 ############################################################################## |
| 405 ['variant == asm_wasm', { | 401 ['variant == asm_wasm', { |
| 406 '*': [SKIP], | 402 '*': [SKIP], |
| 407 }], # variant == asm_wasm | 403 }], # variant == asm_wasm |
| 408 | 404 |
| 409 ] | 405 ] |
| OLD | NEW |