aboutsummaryrefslogtreecommitdiffstats
path: root/tests/busybox/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/busybox/run_tests.py')
-rw-r--r--tests/busybox/run_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/busybox/run_tests.py b/tests/busybox/run_tests.py
index c6f3b8d..31c5c5b 100644
--- a/tests/busybox/run_tests.py
+++ b/tests/busybox/run_tests.py
@@ -1,7 +1,7 @@
import pytest
import pathlib
import subprocess
-import tests.busybox.parser as parser
+import plugins.agl_test_log as log
from plugins.agl_test_ptest_base import PTESTBase
class BusyboxBase(PTESTBase):
@@ -10,7 +10,7 @@ class BusyboxBase(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)
def precheck(self):
path_bash = pathlib.Path("/usr/bin/busybox")