diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/parselogs.py')
-rw-r--r-- | meta/lib/oeqa/runtime/parselogs.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index 8610863362..aa5008bba9 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py | |||
@@ -43,6 +43,7 @@ common_errors = [ | |||
43 | "controller can't do DEVSLP, turning off", | 43 | "controller can't do DEVSLP, turning off", |
44 | "stmmac_dvr_probe: warning: cannot get CSR clock", | 44 | "stmmac_dvr_probe: warning: cannot get CSR clock", |
45 | "error: couldn\'t mount because of unsupported optional features", | 45 | "error: couldn\'t mount because of unsupported optional features", |
46 | "GPT: Use GNU Parted to correct GPT errors", | ||
46 | ] | 47 | ] |
47 | 48 | ||
48 | video_related = [ | 49 | video_related = [ |
@@ -70,7 +71,7 @@ qemux86_common = [ | |||
70 | 'tsc: HPET/PMTIMER calibration failed', | 71 | 'tsc: HPET/PMTIMER calibration failed', |
71 | ] + common_errors | 72 | ] + common_errors |
72 | 73 | ||
73 | ignore_errors = { | 74 | ignore_errors = { |
74 | 'default' : common_errors, | 75 | 'default' : common_errors, |
75 | 'qemux86' : [ | 76 | 'qemux86' : [ |
76 | 'Failed to access perfctr msr (MSR', | 77 | 'Failed to access perfctr msr (MSR', |
@@ -202,7 +203,7 @@ class ParseLogsTest(oeRuntimeTest): | |||
202 | hwi += "*******************************\n" | 203 | hwi += "*******************************\n" |
203 | return hwi | 204 | return hwi |
204 | 205 | ||
205 | #go through the log locations provided and if it's a folder create a list with all the .log files in it, if it's a file just add | 206 | #go through the log locations provided and if it's a folder create a list with all the .log files in it, if it's a file just add |
206 | #it to that list | 207 | #it to that list |
207 | def getLogList(self, log_locations): | 208 | def getLogList(self, log_locations): |
208 | logs = [] | 209 | logs = [] |