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.
20 lines
606 B
20 lines
606 B
from LogAnalyzer import Test,TestResult |
|
import DataflashLog |
|
|
|
|
|
class TestEmpty(Test): |
|
'''test for empty or near-empty logs''' |
|
|
|
def __init__(self): |
|
Test.__init__(self) |
|
self.name = "Empty" |
|
|
|
def run(self, logdata, verbose): |
|
self.result = TestResult() |
|
self.result.status = TestResult.StatusType.GOOD |
|
|
|
# all the logic for this test is in the helper function, as it can also be called up front as an early exit |
|
emptyErr = DataflashLog.DataflashLogHelper.isLogEmpty(logdata) |
|
if emptyErr: |
|
self.result.status = TestResult.StatusType.FAIL |
|
self.result.statusMessage = "Empty log? " + emptyErr
|
|
|