aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cpio/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cpio/run_tests.py')
-rw-r--r--tests/cpio/run_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cpio/run_tests.py b/tests/cpio/run_tests.py
index 6be11da..cde6ed1 100644
--- a/tests/cpio/run_tests.py
+++ b/tests/cpio/run_tests.py
@@ -1,5 +1,5 @@
import pytest
-import tests.cpio.parser as parser
+import plugins.agl_test_log as log
from plugins.agl_test_ptest_base import PTESTBase
class CPIOBase(PTESTBase):
@@ -8,7 +8,7 @@ class CPIOBase(PTESTBase):
def log_process(self):
log_file = self.get_logfile()
- self.case_info_list = parser.log_parse(log_file)
+ self.case_info_list = log.log_process_gnu(log_file)
instance = CPIOBase()
instance.run_ptest()