From: Giacomo Travaglini Date: Tue, 3 Mar 2020 13:20:27 +0000 (+0000) Subject: tests: Use relative path for python3 compliance X-Git-Tag: v20.0.0.0~340 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6eff39b962762ec65a639332c00618ef94b34f50;p=gem5.git tests: Use relative path for python3 compliance Change-Id: I9a45a7800f1b69037781374df86e29bd5eb0f014 Signed-off-by: Giacomo Travaglini Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/26255 Tested-by: kokoro Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power --- diff --git a/tests/testing/tests.py b/tests/testing/tests.py index 757add330..98c9a660a 100755 --- a/tests/testing/tests.py +++ b/tests/testing/tests.py @@ -39,7 +39,8 @@ from abc import ABCMeta, abstractmethod import os from collections import namedtuple from units import * -from results import TestResult +from .helpers import FileIgnoreList +from .results import TestResult import shutil _test_base = os.path.join(os.path.dirname(__file__), "..")