1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-02 03:12:34 +01:00

Merge pull request #497 from bjackman/phone-home

Add feature to mark workloads unsafe for confidential devices
This commit is contained in:
setrofim
2017-10-04 15:57:41 +01:00
committed by GitHub
4 changed files with 36 additions and 3 deletions

View File

@@ -783,6 +783,19 @@ class RunConfiguration(Configuration):
export the output to an exeternal location.
''',
),
ConfigurationPoint(
'allow_phone_home',
kind=bool, default=True,
description='''
Setting this to ``False`` prevents running any workloads that are marked
with 'phones_home', meaning they are at risk of exposing information
about the device to the outside world. For example, some benchmark
applications upload device data to a database owned by the
maintainers.
This can be used to minimise the risk of accidentally running such
workloads when testing confidential devices.
'''),
]
configuration = {cp.name: cp for cp in config_points + meta_data}