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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 'test-heap-profiler/ManyLocalsInSharedContext': [PASS, NO_VARIANTS], | 114 'test-heap-profiler/ManyLocalsInSharedContext': [PASS, NO_VARIANTS], |
115 'test-serialize/SerializeToplevelLargeCodeObject': [PASS, NO_VARIANTS], | 115 'test-serialize/SerializeToplevelLargeCodeObject': [PASS, NO_VARIANTS], |
116 'test-debug/ThreadedDebugging': [PASS, NO_VARIANTS], | 116 'test-debug/ThreadedDebugging': [PASS, NO_VARIANTS], |
117 # BUG(3742). | 117 # BUG(3742). |
118 'test-mark-compact/MarkCompactCollector': [PASS, ['arch==arm', NO_VARIANTS]], | 118 'test-mark-compact/MarkCompactCollector': [PASS, ['arch==arm', NO_VARIANTS]], |
119 | 119 |
120 # TODO(mstarzinger): The rewriter is not being called when top-level code is | 120 # TODO(mstarzinger): The rewriter is not being called when top-level code is |
121 # optimized and hence scripts don't "return" the correct value. Fix this. | 121 # optimized and hence scripts don't "return" the correct value. Fix this. |
122 'test-compiler/CompileFunctionInContext*': [PASS, NO_VARIANTS], | 122 'test-compiler/CompileFunctionInContext*': [PASS, NO_VARIANTS], |
123 | 123 |
| 124 # TODO(bmeurer): TurboFan embeds strong references to all kinds of objects |
| 125 # via deoptimization data (Crankshaft also does this, but lack proper test |
| 126 # coverage). |
| 127 'test-heap/ObjectsInOptimizedCodeAreWeak': [PASS, NO_VARIANTS], |
| 128 |
124 # TurboFan doesn't support allocation sites currently. | 129 # TurboFan doesn't support allocation sites currently. |
125 'test-heap/CellsInOptimizedCodeAreWeak': [PASS, NO_VARIANTS], | |
126 'test-heap/EnsureAllocationSiteDependentCodesProcessed': [PASS, NO_VARIANTS], | 130 'test-heap/EnsureAllocationSiteDependentCodesProcessed': [PASS, NO_VARIANTS], |
127 'test-heap/ObjectsInOptimizedCodeAreWeak': [PASS, NO_VARIANTS], | |
128 'test-heap/OptimizedPretenuringAllocationFolding': [PASS, NO_VARIANTS], | 131 'test-heap/OptimizedPretenuringAllocationFolding': [PASS, NO_VARIANTS], |
129 'test-heap/OptimizedPretenuringdoubleArrayLiterals': [PASS, NO_VARIANTS], | 132 'test-heap/OptimizedPretenuringdoubleArrayLiterals': [PASS, NO_VARIANTS], |
130 'test-heap/OptimizedPretenuringDoubleArrayProperties': [PASS, NO_VARIANTS], | 133 'test-heap/OptimizedPretenuringDoubleArrayProperties': [PASS, NO_VARIANTS], |
131 'test-heap/OptimizedPretenuringMixedInObjectProperties': [PASS, NO_VARIANTS], | 134 'test-heap/OptimizedPretenuringMixedInObjectProperties': [PASS, NO_VARIANTS], |
132 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [PASS, NO_VARIANTS], | 135 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [PASS, NO_VARIANTS], |
133 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [PASS, NO_VARIANTS], | 136 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [PASS, NO_VARIANTS], |
134 'test-heap/OptimizedPretenuringNestedObjectLiterals': [PASS, NO_VARIANTS], | 137 'test-heap/OptimizedPretenuringNestedObjectLiterals': [PASS, NO_VARIANTS], |
135 'test-heap/OptimizedPretenuringObjectArrayLiterals': [PASS, NO_VARIANTS], | 138 'test-heap/OptimizedPretenuringObjectArrayLiterals': [PASS, NO_VARIANTS], |
136 | 139 |
137 # TurboFan cpu profiler result is different. | 140 # TurboFan cpu profiler result is different. |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 ############################################################################## | 472 ############################################################################## |
470 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 473 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
471 | 474 |
472 # Pass but take too long with the simulator. | 475 # Pass but take too long with the simulator. |
473 'test-api/Threading1': [PASS, SLOW], | 476 'test-api/Threading1': [PASS, SLOW], |
474 'test-api/Threading2': [PASS, SLOW], | 477 'test-api/Threading2': [PASS, SLOW], |
475 'test-api/ExternalArrays': [PASS, SLOW], | 478 'test-api/ExternalArrays': [PASS, SLOW], |
476 | 479 |
477 }], # 'arch == ppc64 and simulator_run == True' | 480 }], # 'arch == ppc64 and simulator_run == True' |
478 ] | 481 ] |
OLD | NEW |