Searched refs:suite (Results 1 - 13 of 13) sorted by relevance

/gem5/tests/gem5/
H A D__init__.py29 import suite
32 from suite import *
H A Dsuite.py34 from testlib.suite import TestSuite
64 into a suite that will be ran after a gem5 run.
/gem5/ext/testlib/
H A Dquery.py40 for suite in self.schedule:
41 tags = tags | set(suite.tags)
45 return [suite for suite in self.schedule]
48 return filter(lambda suite: tag in suite.tags, self.suites())
54 for suite in self.schedule:
55 for test in suite:
62 for suite in self.suites():
63 log.test_log.message(suite
[all...]
H A D__init__.py33 from .suite import *
H A Dloader.py75 import suite as suite_mod
162 for suite in new_suites:
163 if suite.uid in new_suite_uids:
165 "More than one suite with UID '%s' was defined" %\
166 suite.uid)
167 new_suite_uids[suite.uid] = suite
170 for suite in new_suites:
172 for test in suite:
176 " in suite '
[all...]
H A Dresult.py66 def __init__(self, obj, suite, directory):
68 self.suite = suite
71 InternalSavedResults.output_path(self.uid, suite.uid),
75 InternalSavedResults.output_path(self.uid, suite.uid),
117 self._suites = [InternalSuiteResult(suite, self.directory)
118 for suite in obj]
121 def add_suite(self, suite):
122 if suite.uid in self._suites:
123 raise ValueError('Cannot have duplicate suite UID
[all...]
H A Drunner.py43 Status of the test suite by default is:
68 def __init__(self, test, suite):
70 self.suite = suite
71 self.log = log.TestLogWrapper(log.test_log, test, suite)
75 fixtures = {fixture.name:fixture for fixture in self.suite.fixtures}
161 def _entrypoint(self, suite):
162 suite.runner(suite).run()
166 pool.map(lambda suite
[all...]
H A Duid.py62 def from_suite(self, suite, filepath):
63 return SuiteUID(filepath, suite.name)
100 def suite(self): member in class:TestUID
109 def suite(self): member in class:SuiteUID
H A Dsandbox.py57 def __init__(self, test, suite):
59 self.suite = suite
110 suite = self.suite
115 lambda buf: log.test_stdout(test, suite, buf))
120 lambda buf: log.test_stderr(test, suite, buf))
174 self.io_manager = IoManager(self.params.test, self.params.suite)
H A Dmain.py145 suite, that suite will added to the set.
148 suite, that suite will removed to the set.
166 set(suite_ARM64) # Suite begins empty, but adds the ARM64 suite
196 loaded_library.suites = [suite for suite in loaded_library.suites
197 if suite in suites]
310 rerun_suites = (suite.uid for suite i
[all...]
H A Dwrappers.py212 :returns: an interator overall all global, suite,
216 *(suite.fixtures for suite in self.obj)),
217 *(self.test_fixtures(suite) for suite in self.obj)
220 def test_fixtures(self, suite):
223 test contained in the given suite
225 return itertools.chain(*(test.fixtures for test in suite))
H A Dlog.py222 # replace metadata with just test and suite uid tags.
223 def test_stdout(self, test, suite, buf):
226 def test_stderr(self, test, suite, buf):
233 def __init__(self, log, test, suite):
/gem5/tests/testing/
H A Dresults.py177 for suite in suites:
178 print("--- %s ---" % suite.name, file=fout)
180 for t in suite.results:
200 def test_status(self, suite):
201 if suite.skipped():
203 elif suite.changed():
205 elif suite:
212 for suite in suites:
213 status = self.test_status(suite)
214 print("%s: %s" % (suite
[all...]

Completed in 15 milliseconds