summaryrefslogtreecommitdiffstats
path: root/tests/zlib/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/zlib/run_tests.py')
-rw-r--r--tests/zlib/run_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zlib/run_tests.py b/tests/zlib/run_tests.py
index 47c984e..4bf6d67 100644
--- a/tests/zlib/run_tests.py
+++ b/tests/zlib/run_tests.py
@@ -1,5 +1,5 @@
import pytest
-import tests.zlib.parser as parser
+import plugins.agl_test_log as log
from plugins.agl_test_ptest_base import PTESTBase
class ZLIBBase(PTESTBase):
@@ -8,7 +8,7 @@ class ZLIBBase(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 = ZLIBBase()
instance.run_ptest()