[gem5-dev] Change in gem5/gem5[develop]: tests: Use relative path for python3 compliance

2020-03-17 Thread Jiajie Chen (Gerrit)
Jiajie Chen has submitted this change. (  
https://gem5-review.googlesource.com/c/public/gem5/+/26743 )


Change subject: tests: Use relative path for python3 compliance
..

tests: Use relative path for python3 compliance

Change-Id: Ie18c52982e2083d0fc2723147f2493b39bcb3786
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/26743
Reviewed-by: Jason Lowe-Power 
Reviewed-by: Bobby R. Bruce 
Maintainer: Bobby R. Bruce 
Tested-by: kokoro 
---
M tests/testing/tests.py
M tests/testing/units.py
2 files changed, 3 insertions(+), 3 deletions(-)

Approvals:
  Jason Lowe-Power: Looks good to me, approved
  Bobby R. Bruce: Looks good to me, approved; Looks good to me, approved
  kokoro: Regressions pass



diff --git a/tests/testing/tests.py b/tests/testing/tests.py
index 98c9a66..29bfa78 100755
--- a/tests/testing/tests.py
+++ b/tests/testing/tests.py
@@ -38,7 +38,7 @@
 from abc import ABCMeta, abstractmethod
 import os
 from collections import namedtuple
-from units import *
+from .units import *
 from .helpers import FileIgnoreList
 from .results import TestResult
 import shutil
diff --git a/tests/testing/units.py b/tests/testing/units.py
index 0139b31..9c9c1e5 100644
--- a/tests/testing/units.py
+++ b/tests/testing/units.py
@@ -45,8 +45,8 @@
 import sys
 import traceback

-from results import UnitResult
-from helpers import *
+from .results import UnitResult
+from .helpers import *

 _test_base = os.path.join(os.path.dirname(__file__), "..")


--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/26743
To unsubscribe, or for help writing mail filters, visit  
https://gem5-review.googlesource.com/settings


Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: Ie18c52982e2083d0fc2723147f2493b39bcb3786
Gerrit-Change-Number: 26743
Gerrit-PatchSet: 2
Gerrit-Owner: Jiajie Chen 
Gerrit-Reviewer: Bobby R. Bruce 
Gerrit-Reviewer: Jason Lowe-Power 
Gerrit-Reviewer: Jiajie Chen 
Gerrit-Reviewer: kokoro 
Gerrit-MessageType: merged
___
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev

[gem5-dev] Change in gem5/gem5[develop]: tests: Use relative path for python3 compliance

2020-03-14 Thread Jiajie Chen (Gerrit)
Jiajie Chen has uploaded this change for review. (  
https://gem5-review.googlesource.com/c/public/gem5/+/26743 )



Change subject: tests: Use relative path for python3 compliance
..

tests: Use relative path for python3 compliance

Change-Id: Ie18c52982e2083d0fc2723147f2493b39bcb3786
---
M tests/testing/tests.py
M tests/testing/units.py
2 files changed, 3 insertions(+), 3 deletions(-)



diff --git a/tests/testing/tests.py b/tests/testing/tests.py
index 98c9a66..29bfa78 100755
--- a/tests/testing/tests.py
+++ b/tests/testing/tests.py
@@ -38,7 +38,7 @@
 from abc import ABCMeta, abstractmethod
 import os
 from collections import namedtuple
-from units import *
+from .units import *
 from .helpers import FileIgnoreList
 from .results import TestResult
 import shutil
diff --git a/tests/testing/units.py b/tests/testing/units.py
index 0139b31..9c9c1e5 100644
--- a/tests/testing/units.py
+++ b/tests/testing/units.py
@@ -45,8 +45,8 @@
 import sys
 import traceback

-from results import UnitResult
-from helpers import *
+from .results import UnitResult
+from .helpers import *

 _test_base = os.path.join(os.path.dirname(__file__), "..")


--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/26743
To unsubscribe, or for help writing mail filters, visit  
https://gem5-review.googlesource.com/settings


Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: Ie18c52982e2083d0fc2723147f2493b39bcb3786
Gerrit-Change-Number: 26743
Gerrit-PatchSet: 1
Gerrit-Owner: Jiajie Chen 
Gerrit-MessageType: newchange
___
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev

[gem5-dev] Change in gem5/gem5[develop]: tests: Use relative path for python3 compliance

2020-03-13 Thread Giacomo Travaglini (Gerrit)
Giacomo Travaglini has submitted this change. (  
https://gem5-review.googlesource.com/c/public/gem5/+/26255 )


Change subject: tests: Use relative path for python3 compliance
..

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 
---
M tests/testing/tests.py
1 file changed, 2 insertions(+), 1 deletion(-)

Approvals:
  Jason Lowe-Power: Looks good to me, approved; Looks good to me, approved
  kokoro: Regressions pass



diff --git a/tests/testing/tests.py b/tests/testing/tests.py
index 757add3..98c9a66 100755
--- a/tests/testing/tests.py
+++ b/tests/testing/tests.py
@@ -39,7 +39,8 @@
 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__), "..")

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/26255
To unsubscribe, or for help writing mail filters, visit  
https://gem5-review.googlesource.com/settings


Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: I9a45a7800f1b69037781374df86e29bd5eb0f014
Gerrit-Change-Number: 26255
Gerrit-PatchSet: 6
Gerrit-Owner: Giacomo Travaglini 
Gerrit-Reviewer: Bobby R. Bruce 
Gerrit-Reviewer: Gabe Black 
Gerrit-Reviewer: Giacomo Travaglini 
Gerrit-Reviewer: Jason Lowe-Power 
Gerrit-Reviewer: kokoro 
Gerrit-MessageType: merged
___
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev

[gem5-dev] Change in gem5/gem5[develop]: tests: Use relative path for python3 compliance

2020-03-04 Thread Giacomo Travaglini (Gerrit)
Giacomo Travaglini has uploaded this change for review. (  
https://gem5-review.googlesource.com/c/public/gem5/+/26255 )



Change subject: tests: Use relative path for python3 compliance
..

tests: Use relative path for python3 compliance

Change-Id: I9a45a7800f1b69037781374df86e29bd5eb0f014
Signed-off-by: Giacomo Travaglini 
---
M tests/testing/tests.py
1 file changed, 2 insertions(+), 1 deletion(-)



diff --git a/tests/testing/tests.py b/tests/testing/tests.py
index 757add3..98c9a66 100755
--- a/tests/testing/tests.py
+++ b/tests/testing/tests.py
@@ -39,7 +39,8 @@
 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__), "..")

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/26255
To unsubscribe, or for help writing mail filters, visit  
https://gem5-review.googlesource.com/settings


Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: I9a45a7800f1b69037781374df86e29bd5eb0f014
Gerrit-Change-Number: 26255
Gerrit-PatchSet: 1
Gerrit-Owner: Giacomo Travaglini 
Gerrit-MessageType: newchange
___
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev