Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: runtime/tests/vm/vm.status

Issue 2187423002: DBC: Implement coverage by adding missing count increments to unoptimized static and instance calls. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: . Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/observatory/tests/service/service.status ('k') | runtime/vm/simulator_dbc.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 cc/IsolateReload_PendingUnqualifiedCall_InstanceToStatic: Fail, Crash 5 cc/IsolateReload_PendingUnqualifiedCall_InstanceToStatic: Fail, Crash
6 cc/IsolateReload_PendingUnqualifiedCall_StaticToInstance: Fail, Crash 6 cc/IsolateReload_PendingUnqualifiedCall_StaticToInstance: Fail, Crash
7 cc/IsolateReload_PendingConstructorCall_AbstractToConcrete: Fail, Crash 7 cc/IsolateReload_PendingConstructorCall_AbstractToConcrete: Fail, Crash
8 cc/IsolateReload_PendingConstructorCall_ConcreteToAbstract: Fail, Crash 8 cc/IsolateReload_PendingConstructorCall_ConcreteToAbstract: Fail, Crash
9 cc/IsolateReload_PendingStaticCall_DefinedToNSM: Fail, Crash 9 cc/IsolateReload_PendingStaticCall_DefinedToNSM: Fail, Crash
10 cc/IsolateReload_PendingStaticCall_NSMToDefined: Fail, Crash 10 cc/IsolateReload_PendingStaticCall_NSMToDefined: Fail, Crash
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 cc/Profiler_SampleBufferWrapTest: Skip 132 cc/Profiler_SampleBufferWrapTest: Skip
133 cc/Profiler_SourcePosition: Skip 133 cc/Profiler_SourcePosition: Skip
134 cc/Profiler_SourcePositionOptimized: Skip 134 cc/Profiler_SourcePositionOptimized: Skip
135 cc/Profiler_StringAllocation: Skip 135 cc/Profiler_StringAllocation: Skip
136 cc/Profiler_StringInterpolation: Skip 136 cc/Profiler_StringInterpolation: Skip
137 cc/Profiler_ToggleRecordAllocation: Skip 137 cc/Profiler_ToggleRecordAllocation: Skip
138 cc/Profiler_TrivialRecordAllocation: Skip 138 cc/Profiler_TrivialRecordAllocation: Skip
139 cc/Profiler_TypedArrayAllocation: Skip 139 cc/Profiler_TypedArrayAllocation: Skip
140 cc/Profiler_GetSourceReport: Skip 140 cc/Profiler_GetSourceReport: Skip
141 141
142 # TODO(vegorov) These tests are crashing because ICData objects can't be found
143 cc/SourceReport_CallSites_PolymorphicCall: Skip
144 cc/SourceReport_CallSites_SimpleCall: Skip
145 cc/SourceReport_Coverage_AllFunctions: Skip
146 cc/SourceReport_Coverage_ForceCompile: Skip
147 cc/SourceReport_Coverage_AllFunctions_ForceCompile: Skip
148 cc/SourceReport_Coverage_NestedFunctions: Skip
149 cc/SourceReport_Coverage_SimpleCall: Skip
150 cc/SourceReport_Coverage_UnusedClass_NoForceCompile: Skip
151 cc/SourceReport_Coverage_UnusedClass_ForceCompile: Skip
152 cc/SourceReport_Coverage_UnusedClass_ForceCompileError: Skip
153 cc/SourceReport_MultipleReports: Skip
154 cc/Coverage_Empty: Skip
155 cc/Coverage_FilterFunction: Skip
156 cc/Coverage_MainWithClass: Skip
157
158 # TODO(vegorov) These tests don't seem to work if FLAG_interpret_irregexp 142 # TODO(vegorov) These tests don't seem to work if FLAG_interpret_irregexp
159 # is switched on by default because they attempt to call regexp functions 143 # is switched on by default because they attempt to call regexp functions
160 # directly instead of going through JSSyntaxRegExp_ExecuteMatch. 144 # directly instead of going through JSSyntaxRegExp_ExecuteMatch.
161 cc/RegExp_ExternalOneByteString: Skip 145 cc/RegExp_ExternalOneByteString: Skip
162 cc/RegExp_ExternalTwoByteString: Skip 146 cc/RegExp_ExternalTwoByteString: Skip
163 cc/RegExp_OneByteString: Skip 147 cc/RegExp_OneByteString: Skip
164 cc/RegExp_TwoByteString: Skip 148 cc/RegExp_TwoByteString: Skip
165 149
166 # TODO(vegorov) Field guards are disabled for SIMDBC 150 # TODO(vegorov) Field guards are disabled for SIMDBC
167 cc/GuardFieldConstructor2Test: Skip 151 cc/GuardFieldConstructor2Test: Skip
168 cc/GuardFieldConstructorTest: Skip 152 cc/GuardFieldConstructorTest: Skip
169 cc/GuardFieldFinalListTest: Skip 153 cc/GuardFieldFinalListTest: Skip
170 cc/GuardFieldFinalVariableLengthListTest: Skip 154 cc/GuardFieldFinalVariableLengthListTest: Skip
171 cc/GuardFieldSimpleTest: Skip 155 cc/GuardFieldSimpleTest: Skip
172 156
173 cc/Debug_StepInto: Fail # Missing single stepping check at fast Smi op 157 cc/Debug_StepInto: Fail # Missing single stepping check at fast Smi op
174 158
175 # This test is meaningless for DBC as allocation stubs are not used. 159 # This test is meaningless for DBC as allocation stubs are not used.
176 cc/RegenerateAllocStubs: Skip 160 cc/RegenerateAllocStubs: Skip
177 161
178 [ $hot_reload ] 162 [ $hot_reload ]
179 dart/spawn_shutdown_test: Skip # We can shutdown an isolate before it reloads. 163 dart/spawn_shutdown_test: Skip # We can shutdown an isolate before it reloads.
180 dart/spawn_infinite_loop_test: Skip # We can shutdown an isolate before it reloa ds. 164 dart/spawn_infinite_loop_test: Skip # We can shutdown an isolate before it reloa ds.
OLDNEW
« no previous file with comments | « runtime/observatory/tests/service/service.status ('k') | runtime/vm/simulator_dbc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698