| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 # Pass but take too long with the simulator. | 320 # Pass but take too long with the simulator. |
| 321 'test-api/Threading1': [PASS, SLOW], | 321 'test-api/Threading1': [PASS, SLOW], |
| 322 'test-api/Threading2': [PASS, SLOW], | 322 'test-api/Threading2': [PASS, SLOW], |
| 323 'test-api/ExternalArrays': [PASS, SLOW], | 323 'test-api/ExternalArrays': [PASS, SLOW], |
| 324 | 324 |
| 325 }], # 'arch == ppc64 and simulator_run == True' | 325 }], # 'arch == ppc64 and simulator_run == True' |
| 326 | 326 |
| 327 ############################################################################## | 327 ############################################################################## |
| 328 ['variant == turbofan', { | 328 ['variant == turbofan', { |
| 329 | 329 |
| 330 # TODO(bmeurer): TurboFan embeds strong references to all kinds of objects | |
| 331 # via deoptimization data (Crankshaft also does this, but lack proper test | |
| 332 # coverage). | |
| 333 'test-heap/ObjectsInOptimizedCodeAreWeak': [FAIL], | |
| 334 | |
| 335 # TurboFan cpu profiler result is different. | 330 # TurboFan cpu profiler result is different. |
| 336 'test-cpu-profiler/CollectDeoptEvents': [FAIL], | 331 'test-cpu-profiler/CollectDeoptEvents': [FAIL], |
| 337 'test-cpu-profiler/DeoptAtFirstLevelInlinedSource': [FAIL], | 332 'test-cpu-profiler/DeoptAtFirstLevelInlinedSource': [FAIL], |
| 338 'test-cpu-profiler/DeoptAtSecondLevelInlinedSource': [FAIL], | 333 'test-cpu-profiler/DeoptAtSecondLevelInlinedSource': [FAIL], |
| 339 | 334 |
| 340 }], # variant == turbofan | 335 }], # variant == turbofan |
| 341 | 336 |
| 342 ############################################################################## | 337 ############################################################################## |
| 343 ['variant == turbofan_opt', { | 338 ['variant == turbofan_opt', { |
| 344 # BUG(5193): Flaky. | 339 # BUG(5193): Flaky. |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 | 526 |
| 532 # TurboFan cpu profiler result is different. | 527 # TurboFan cpu profiler result is different. |
| 533 'test-cpu-profiler/DeoptAtFirstLevelInlinedSource': [FAIL], | 528 'test-cpu-profiler/DeoptAtFirstLevelInlinedSource': [FAIL], |
| 534 'test-cpu-profiler/DeoptAtSecondLevelInlinedSource': [FAIL], | 529 'test-cpu-profiler/DeoptAtSecondLevelInlinedSource': [FAIL], |
| 535 | 530 |
| 536 # BUG(5193): Flaky. | 531 # BUG(5193): Flaky. |
| 537 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]], | 532 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]], |
| 538 }], # variant == ignition_turbofan | 533 }], # variant == ignition_turbofan |
| 539 | 534 |
| 540 ] | 535 ] |
| OLD | NEW |