Browse Source

Tools: LogAnalyzer: fix whitespace

master
Peter Barker 8 years ago
parent
commit
ebc8dc4afc
  1. 4
      Tools/LogAnalyzer/tests/TestBrownout.py
  2. 20
      Tools/LogAnalyzer/tests/TestEvents.py
  3. 4
      Tools/LogAnalyzer/tests/TestGPSGlitch.py

4
Tools/LogAnalyzer/tests/TestBrownout.py

@ -14,8 +14,8 @@ class TestBrownout(Test): @@ -14,8 +14,8 @@ class TestBrownout(Test):
self.result = TestResult()
self.result.status = TestResult.StatusType.GOOD
isArmed = False
# FIXME: cope with LOG_ARM_DISARM_MSG message
isArmed = False
# FIXME: cope with LOG_ARM_DISARM_MSG message
if "EV" in logdata.channels:
# step through the arm/disarm events in order, to see if they're symmetrical
# note: it seems landing detection isn't robust enough to rely upon here, so we'll only consider arm+disarm, not takeoff+land

20
Tools/LogAnalyzer/tests/TestEvents.py

@ -21,30 +21,30 @@ class TestEvents(Test): @@ -21,30 +21,30 @@ class TestEvents(Test):
for i in range(len(logdata.channels["ERR"]["Subsys"].listData)):
subSys = logdata.channels["ERR"]["Subsys"].listData[i][1]
eCode = logdata.channels["ERR"]["ECode"].listData[i][1]
if subSys == 2 and (eCode == 1):
if subSys == 2 and (eCode == 1):
errors.add("PPM")
elif subSys == 3 and (eCode == 1 or eCode == 2):
elif subSys == 3 and (eCode == 1 or eCode == 2):
errors.add("COMPASS")
elif subSys == 5 and (eCode == 1):
elif subSys == 5 and (eCode == 1):
errors.add("FS_THR")
elif subSys == 6 and (eCode == 1):
elif subSys == 6 and (eCode == 1):
errors.add("FS_BATT")
elif subSys == 7 and (eCode == 1):
elif subSys == 7 and (eCode == 1):
errors.add("GPS")
elif subSys == 8 and (eCode == 1):
elif subSys == 8 and (eCode == 1):
errors.add("GCS")
elif subSys == 9 and (eCode == 1 or eCode == 2):
errors.add("FENCE")
elif subSys == 10:
errors.add("FLT_MODE")
elif subSys == 11 and (eCode == 2):
elif subSys == 11 and (eCode == 2):
errors.add("GPS_GLITCH")
elif subSys == 12 and (eCode == 1):
elif subSys == 12 and (eCode == 1):
errors.add("CRASH")
if errors:
if len(errors) == 1 and "FENCE" in errors:
self.result.status = TestResult.StatusType.WARN
if len(errors) == 1 and "FENCE" in errors:
self.result.status = TestResult.StatusType.WARN
else:
self.result.status = TestResult.StatusType.FAIL
if len(errors) == 1:

4
Tools/LogAnalyzer/tests/TestGPSGlitch.py

@ -25,9 +25,9 @@ class TestGPSGlitch(Test): @@ -25,9 +25,9 @@ class TestGPSGlitch(Test):
for i in range(len(logdata.channels["ERR"]["Subsys"].listData)):
subSys = logdata.channels["ERR"]["Subsys"].listData[i][1]
eCode = logdata.channels["ERR"]["ECode"].listData[i][1]
if subSys == 11 and (eCode == 2):
if subSys == 11 and (eCode == 2):
gpsGlitchCount += 1
if gpsGlitchCount:
if gpsGlitchCount:
self.result.status = TestResult.StatusType.FAIL
self.result.statusMessage = "GPS glitch errors found (%d)" % gpsGlitchCount

Loading…
Cancel
Save