| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 # and therefore break because top-level code is optimized. Fix the tests. | 111 # and therefore break because top-level code is optimized. Fix the tests. |
| 112 'test-heap/NextCodeLinkIsWeak': [PASS, NO_VARIANTS], | 112 'test-heap/NextCodeLinkIsWeak': [PASS, NO_VARIANTS], |
| 113 'test-heap/TestInternalWeakLists': [PASS, NO_VARIANTS], | 113 'test-heap/TestInternalWeakLists': [PASS, NO_VARIANTS], |
| 114 'test-heap/TestInternalWeakListsTraverseWithGC': [PASS, NO_VARIANTS], | 114 'test-heap/TestInternalWeakListsTraverseWithGC': [PASS, NO_VARIANTS], |
| 115 | 115 |
| 116 # TODO(mstarzinger): Crankshaft doesn't fire interceptors as expected. | 116 # TODO(mstarzinger): Crankshaft doesn't fire interceptors as expected. |
| 117 'test-api-interceptors/PrePropertyHandler': [PASS, NO_VARIANTS], | 117 'test-api-interceptors/PrePropertyHandler': [PASS, NO_VARIANTS], |
| 118 | 118 |
| 119 # TODO(mstarzinger): Crankshaft messes with debugger, investigate and fix! | 119 # TODO(mstarzinger): Crankshaft messes with debugger, investigate and fix! |
| 120 'test-debug/BreakPointThroughJavaScript': [PASS, NO_VARIANTS], # in no-snap m
ode. | 120 'test-debug/BreakPointThroughJavaScript': [PASS, NO_VARIANTS], # in no-snap m
ode. |
| 121 'test-debug/ScriptBreakPointByIdThroughJavaScript': [PASS, NO_VARIANTS], |
| 122 'test-debug/ScriptBreakPointByNameThroughJavaScript': [PASS, NO_VARIANTS], |
| 121 | 123 |
| 122 # TODO(jarin): Cannot lazy-deoptimize from conversions before comparisons. | 124 # TODO(jarin): Cannot lazy-deoptimize from conversions before comparisons. |
| 123 'test-js-typed-lowering/OrderCompareEffects': [SKIP], | 125 'test-js-typed-lowering/OrderCompareEffects': [SKIP], |
| 124 | 126 |
| 125 # TODO(jochen): Reenable after we removed the CHECK() from the marking queue. | 127 # TODO(jochen): Reenable after we removed the CHECK() from the marking queue. |
| 126 'test-mark-compact/MarkingDeque': [SKIP], | 128 'test-mark-compact/MarkingDeque': [SKIP], |
| 127 | 129 |
| 128 ############################################################################ | 130 ############################################################################ |
| 129 # Slow tests. | 131 # Slow tests. |
| 130 'test-api/Threading1': [PASS, ['mode == debug', SLOW]], | 132 'test-api/Threading1': [PASS, ['mode == debug', SLOW]], |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 ############################################################################## | 420 ############################################################################## |
| 419 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 421 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 420 | 422 |
| 421 # Pass but take too long with the simulator. | 423 # Pass but take too long with the simulator. |
| 422 'test-api/Threading1': [PASS, SLOW], | 424 'test-api/Threading1': [PASS, SLOW], |
| 423 'test-api/Threading2': [PASS, SLOW], | 425 'test-api/Threading2': [PASS, SLOW], |
| 424 'test-api/ExternalArrays': [PASS, SLOW], | 426 'test-api/ExternalArrays': [PASS, SLOW], |
| 425 | 427 |
| 426 }], # 'arch == ppc64 and simulator_run == True' | 428 }], # 'arch == ppc64 and simulator_run == True' |
| 427 ] | 429 ] |
| OLD | NEW |