Index: test/heap-unittests/testcfg.py |
diff --git a/test/base-unittests/testcfg.py b/test/heap-unittests/testcfg.py |
similarity index 89% |
copy from test/base-unittests/testcfg.py |
copy to test/heap-unittests/testcfg.py |
index 0ed46dcdb117b5060fae8e8502cf6b18de525002..7c80a75ea2f82a23e62813b143104d96aecd4911 100644 |
--- a/test/base-unittests/testcfg.py |
+++ b/test/heap-unittests/testcfg.py |
@@ -11,9 +11,9 @@ from testrunner.local import utils |
from testrunner.objects import testcase |
-class BaseUnitTestsSuite(testsuite.TestSuite): |
+class HeapUnitTestsSuite(testsuite.TestSuite): |
def __init__(self, name, root): |
- super(BaseUnitTestsSuite, self).__init__(name, root) |
+ super(HeapUnitTestsSuite, self).__init__(name, root) |
def ListTests(self, context): |
shell = os.path.abspath(os.path.join(context.shell_dir, self.shell())) |
@@ -44,8 +44,8 @@ class BaseUnitTestsSuite(testsuite.TestSuite): |
context.mode_flags) |
def shell(self): |
- return "base-unittests" |
+ return "heap-unittests" |
def GetSuite(name, root): |
- return BaseUnitTestsSuite(name, root) |
+ return HeapUnitTestsSuite(name, root) |