Skip to content

Commit 033551d

Browse files
committed
[lldb]Update TestStas to include correct dwo stats
1 parent 3f866ad commit 033551d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lldb/test/API/commands/statistics/basic/TestStats.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def test_default_no_run(self):
181181
"totalDebugInfoParseTime",
182182
"totalDwoFileCount",
183183
"totalLoadedDwoFileCount",
184-
"totalDwoLoadErrorCount",
184+
"totalDwoErrorCount",
185185
]
186186
self.verify_keys(debug_stats, '"debug_stats"', debug_stat_keys, None)
187187
if self.getPlatform() != "windows":
@@ -294,7 +294,7 @@ def test_default_with_run(self):
294294
"totalDebugInfoParseTime",
295295
"totalDwoFileCount",
296296
"totalLoadedDwoFileCount",
297-
"totalDwoLoadErrorCount",
297+
"totalDwoErrorCount",
298298
]
299299
self.verify_keys(debug_stats, '"debug_stats"', debug_stat_keys, None)
300300
stats = debug_stats["targets"][0]
@@ -335,7 +335,7 @@ def test_memory(self):
335335
"totalDebugInfoByteSize",
336336
"totalDwoFileCount",
337337
"totalLoadedDwoFileCount",
338-
"totalDwoLoadErrorCount",
338+
"totalDwoErrorCount",
339339
]
340340
self.verify_keys(debug_stats, '"debug_stats"', debug_stat_keys, None)
341341

@@ -390,7 +390,7 @@ def test_modules(self):
390390
"totalDebugInfoByteSize",
391391
"totalDwoFileCount",
392392
"totalLoadedDwoFileCount",
393-
"totalDwoLoadErrorCount",
393+
"totalDwoErrorCount",
394394
]
395395
self.verify_keys(debug_stats, '"debug_stats"', debug_stat_keys, None)
396396
stats = debug_stats["targets"][0]
@@ -413,7 +413,7 @@ def test_modules(self):
413413
"symbolTableSavedToCache",
414414
"dwoFileCount",
415415
"loadedDwoFileCount",
416-
"dwoLoadErrorCount",
416+
"dwoErrorCount",
417417
"triple",
418418
"uuid",
419419
]
@@ -504,7 +504,7 @@ def test_breakpoints(self):
504504
"totalDebugInfoByteSize",
505505
"totalDwoFileCount",
506506
"totalLoadedDwoFileCount",
507-
"totalDwoLoadErrorCount",
507+
"totalDwoErrorCount",
508508
]
509509
self.verify_keys(debug_stats, '"debug_stats"', debug_stat_keys, None)
510510
target_stats = debug_stats["targets"][0]

0 commit comments

Comments
 (0)