1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 10:51:13 +01:00

Merge pull request #99 from setrofim/master

Minor fixes.
This commit is contained in:
Sebastian Goscik 2016-02-10 16:50:17 +00:00
commit a32cc0f213
2 changed files with 5 additions and 2 deletions

View File

@ -55,7 +55,7 @@ class AttributeCollection(object):
if v is not None:
setattr(newp, a, v)
if not hasattr(newp, "_overridden"):
newp._overridden = self.owner
newp._overridden = self.owner # pylint: disable=protected-access
self._attrs[p.name] = newp
else:
# Duplicate attribute condition is check elsewhere.

View File

@ -60,7 +60,10 @@ class Dhrystone(Workload):
description=('The delay, in seconds, between kicking off of dhrystone '
'threads (if ``threads`` > 1).')),
Parameter('taskset_mask', kind=int, default=0,
description='The processes spawned by sysbench will be pinned to cores as specified by this parameter'),
description='''
The processes spawned by the workload will be pinned to cores
as specified by this parameter
'''),
]
def setup(self, context):