You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
395 B
17 lines
395 B
11 years ago
|
from LogAnalyzer import Test,TestResult
|
||
|
import DataflashLog
|
||
|
|
||
|
|
||
|
class TestPerformance(Test):
|
||
|
'''check performance monitoring messages (PM) for issues with slow loops, etc'''
|
||
|
|
||
|
def __init__(self):
|
||
|
self.name = "Performance"
|
||
|
|
||
|
def run(self, logdata):
|
||
|
self.result = TestResult()
|
||
|
self.result.status = TestResult.StatusType.PASS
|
||
|
|
||
|
|
||
|
# TODO: test for performance warning messages, slow loops, etc
|