Move the "binary" field from Britney to Suite

Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
Niels Thykier 2018-07-22 10:08:52 +00:00
parent 0c6314b466
commit f464baa257
2 changed files with 3 additions and 1 deletions

View File

@ -325,8 +325,9 @@ class Britney(object):
for suite in self.suite_info:
sources = self.read_sources(suite.path)
suite.sources = sources
suite.binaries = self.read_binaries(suite, self.options.architectures)
self.sources[suite.name] = sources
self.binaries[suite.name] = self.read_binaries(suite, self.options.architectures)
self.binaries[suite.name] = suite.binaries
# compute inverse Testsuite-Triggers: map, unifying all series
self.logger.info('Building inverse testsuite_triggers map')

View File

@ -34,6 +34,7 @@ class Suite(object):
self.path = path
self.suite_short_name = suite_short_name if suite_short_name else ''
self.sources = {}
self.binaries = {}
@property
def excuses_suffix(self):