1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-03-13 22:28:36 +00:00

Add version information to workloads

Add a __version__ parameter to __init__.py for all workloads. The
version number has three components major.minor.patch.

major: completely new interpretation of the test
       (incompatible with previous test)

minor: breaks compatibility with previous test
       (outputted results, dependencies, etc)

patch: code change with no impact on any dependencies
This commit is contained in:
John Richardson 2016-05-20 15:15:13 +01:00
parent 0f7aff48cc
commit 173d5a7dd6
4 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,8 @@ import time
from wlauto import AndroidUiAutoBenchmark, Parameter
__version__ = '0.1.0'
class Gmail(AndroidUiAutoBenchmark):

View File

@ -18,6 +18,8 @@ import re
from wlauto import AndroidUiAutoBenchmark, Parameter
__version__ = '0.1.0'
class Googlephotos(AndroidUiAutoBenchmark):

View File

@ -20,6 +20,8 @@ import time
from wlauto import AndroidUiAutoBenchmark, Parameter
__version__ = '0.1.0'
class Reader(AndroidUiAutoBenchmark):

View File

@ -19,6 +19,7 @@ import time
from wlauto import AndroidUiAutoBenchmark, Parameter
__version__ = '0.1.0'
SKYPE_ACTION_URIS = {
'call': 'call',