summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r--meta/lib/oeqa/runtime/cases/ptest.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ptest.py b/meta/lib/oeqa/runtime/cases/ptest.py
index 7d8849308d..ebef3f9eac 100644
--- a/meta/lib/oeqa/runtime/cases/ptest.py
+++ b/meta/lib/oeqa/runtime/cases/ptest.py
@@ -12,12 +12,7 @@ class PtestRunnerTest(OERuntimeTestCase):
12 12
13 # a ptest log parser 13 # a ptest log parser
14 def parse_ptest(self, logfile): 14 def parse_ptest(self, logfile):
15 parser = Lparser(test_0_pass_regex="^PASS:(.+)", 15 parser = Lparser()
16 test_0_fail_regex="^FAIL:(.+)",
17 test_0_skip_regex="^SKIP:(.+)",
18 section_0_begin_regex="^BEGIN: .*/(.+)/ptest",
19 section_0_end_regex="^END: .*/(.+)/ptest")
20 parser.init()
21 result = Result() 16 result = Result()
22 17
23 with open(logfile, errors='replace') as f: 18 with open(logfile, errors='replace') as f: