Tools: autotest: ensure we can set parameters in groups with internal flag set

This commit is contained in:
Peter Barker 2019-08-28 11:33:31 +10:00 committed by Andrew Tridgell
parent c45db920ff
commit 108f37c67c

View File

@ -3084,6 +3084,11 @@ switch value'''
if old_mt != self.get_parameter("MIS_TOTAL"): if old_mt != self.get_parameter("MIS_TOTAL"):
raise NotAchievedException("Total has changed") raise NotAchievedException("Total has changed")
self.start_subtest("Ensure GCS is able to set other MIS_ parameters")
self.set_parameter("MIS_OPTIONS", 1)
if self.get_parameter("MIS_OPTIONS") != 1:
raise NotAchievedException("Failed to set MIS_OPTIONS")
def disabled_tests(self): def disabled_tests(self):
return {} return {}