1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-05 18:31:12 +01:00

tests/test_agenda_parser: Remove attribute assignment

Do not try and assign the name attribute of the yaml loaded agenda as
this is not used.
This commit is contained in:
Marc Bonnici 2019-05-15 18:14:43 +01:00 committed by setrofim
parent 76e6f14212
commit b4ea2798dd

View File

@ -45,7 +45,6 @@ workloads:
test: 1 test: 1
""" """
invalid_agenda = yaml.load(invalid_agenda_text) invalid_agenda = yaml.load(invalid_agenda_text)
invalid_agenda.name = 'invalid1'
duplicate_agenda_text = """ duplicate_agenda_text = """
global: global:
@ -59,13 +58,11 @@ workloads:
workload_name: benchmarkpi workload_name: benchmarkpi
""" """
duplicate_agenda = yaml.load(duplicate_agenda_text) duplicate_agenda = yaml.load(duplicate_agenda_text)
duplicate_agenda.name = 'invalid2'
short_agenda_text = """ short_agenda_text = """
workloads: [antutu, dhrystone, benchmarkpi] workloads: [antutu, dhrystone, benchmarkpi]
""" """
short_agenda = yaml.load(short_agenda_text) short_agenda = yaml.load(short_agenda_text)
short_agenda.name = 'short'
default_ids_agenda_text = """ default_ids_agenda_text = """
workloads: workloads:
@ -79,7 +76,6 @@ workloads:
- vellamo - vellamo
""" """
default_ids_agenda = yaml.load(default_ids_agenda_text) default_ids_agenda = yaml.load(default_ids_agenda_text)
default_ids_agenda.name = 'default_ids'
sectioned_agenda_text = """ sectioned_agenda_text = """
sections: sections:
@ -103,7 +99,6 @@ workloads:
- memcpy - memcpy
""" """
sectioned_agenda = yaml.load(sectioned_agenda_text) sectioned_agenda = yaml.load(sectioned_agenda_text)
sectioned_agenda.name = 'sectioned'
dup_sectioned_agenda_text = """ dup_sectioned_agenda_text = """
sections: sections:
@ -117,7 +112,6 @@ workloads:
- memcpy - memcpy
""" """
dup_sectioned_agenda = yaml.load(dup_sectioned_agenda_text) dup_sectioned_agenda = yaml.load(dup_sectioned_agenda_text)
dup_sectioned_agenda.name = 'dup-sectioned'
class AgendaTest(TestCase): class AgendaTest(TestCase):