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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 | 95 |
96 # Some tests are just too slow to run for now. | 96 # Some tests are just too slow to run for now. |
97 'test-api/Threading*': [PASS, NO_VARIANTS], | 97 'test-api/Threading*': [PASS, NO_VARIANTS], |
98 'test-heap/IncrementalMarkingStepMakesBigProgressWithLargeObjects': [PASS, NO_
VARIANTS], | 98 'test-heap/IncrementalMarkingStepMakesBigProgressWithLargeObjects': [PASS, NO_
VARIANTS], |
99 'test-heap-profiler/ManyLocalsInSharedContext': [PASS, NO_VARIANTS], | 99 'test-heap-profiler/ManyLocalsInSharedContext': [PASS, NO_VARIANTS], |
100 'test-debug/ThreadedDebugging': [PASS, NO_VARIANTS], | 100 'test-debug/ThreadedDebugging': [PASS, NO_VARIANTS], |
101 'test-debug/DebugBreakLoop': [PASS, NO_VARIANTS], | 101 'test-debug/DebugBreakLoop': [PASS, NO_VARIANTS], |
102 # BUG(3742). | 102 # BUG(3742). |
103 'test-mark-compact/MarkCompactCollector': [PASS, ['arch==arm', NO_VARIANTS]], | 103 'test-mark-compact/MarkCompactCollector': [PASS, ['arch==arm', NO_VARIANTS]], |
104 | 104 |
105 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | |
106 'test-debug/DebugStepNatives': [PASS, NO_VARIANTS], | |
107 'test-debug/DebugStepFunctionApply': [PASS, NO_VARIANTS], | |
108 'test-debug/DebugStepFunctionCall': [PASS, NO_VARIANTS], | |
109 | |
110 # TODO(jarin): Cannot lazy-deoptimize from conversions before comparisons. | 105 # TODO(jarin): Cannot lazy-deoptimize from conversions before comparisons. |
111 'test-js-typed-lowering/OrderCompareEffects': [SKIP], | 106 'test-js-typed-lowering/OrderCompareEffects': [SKIP], |
112 | 107 |
113 # TODO(jochen): Reenable after we removed the CHECK() from the marking queue. | 108 # TODO(jochen): Reenable after we removed the CHECK() from the marking queue. |
114 'test-mark-compact/MarkingDeque': [SKIP], | 109 'test-mark-compact/MarkingDeque': [SKIP], |
115 | 110 |
116 'test-heap/TestInternalWeakLists': [PASS, ['arch==arm', NO_VARIANTS]], | 111 'test-heap/TestInternalWeakLists': [PASS, ['arch==arm', NO_VARIANTS]], |
117 'test-heap/TestInternalWeakListsTraverseWithGC': [PASS, ['arch==arm', NO_VARIA
NTS]], | 112 'test-heap/TestInternalWeakListsTraverseWithGC': [PASS, ['arch==arm', NO_VARIA
NTS]], |
118 | 113 |
119 ############################################################################ | 114 ############################################################################ |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 ############################################################################## | 396 ############################################################################## |
402 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 397 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
403 | 398 |
404 # Pass but take too long with the simulator. | 399 # Pass but take too long with the simulator. |
405 'test-api/Threading1': [PASS, SLOW], | 400 'test-api/Threading1': [PASS, SLOW], |
406 'test-api/Threading2': [PASS, SLOW], | 401 'test-api/Threading2': [PASS, SLOW], |
407 'test-api/ExternalArrays': [PASS, SLOW], | 402 'test-api/ExternalArrays': [PASS, SLOW], |
408 | 403 |
409 }], # 'arch == ppc64 and simulator_run == True' | 404 }], # 'arch == ppc64 and simulator_run == True' |
410 ] | 405 ] |
OLD | NEW |