hideStepIf adjustment, part 3

This commit is contained in:
Sergio Durigan Junior 2016-03-15 19:39:18 -04:00
parent 210dbb70c4
commit dbcd5ab39f

View file

@ -729,36 +729,36 @@ The parameters of the class are:
self.addStep (self.TestClass (self.make_command, self.extra_make_check_flags,
self.test_env,
doStepIf = scheduler_is_not_racy,
hideStepIf = scheduler_is_racy))
doStepIf = scheduler_is_not_racy_do,
hideStepIf = scheduler_is_racy_hide))
self.addStep (GdbCatSumfileCommand (workdir = WithProperties (r'%s/build/gdb/testsuite',
r'builddir'),
description = r'analyze test results',
doStepIf = scheduler_is_not_racy,
hideStepIf = scheduler_is_racy))
doStepIf = scheduler_is_not_racy_do,
hideStepIf = scheduler_is_racy_hide))
self.addStep (FileUpload (slavesrc = WithProperties (r"%s/build/gdb/testsuite/gdb.log",
r'builddir'),
masterdest = WithProperties (r"public_html/results/%s/gdb.log",
r'buildername'),
doStepIf = scheduler_is_not_racy,
hideStepIf = scheduler_is_racy))
self.addStep (SaveGDBResults (doStepIf = scheduler_is_not_racy,
hideStepIf = scheduler_is_racy))
doStepIf = scheduler_is_not_racy_do,
hideStepIf = scheduler_is_racy_hide))
self.addStep (SaveGDBResults (doStepIf = scheduler_is_not_racy_do,
hideStepIf = scheduler_is_racy_hide))
##################### Racy ######################
self.addStep (self.TestClass (self.make_command, self.extra_make_check_flags + [ 'RACY_ITER=5' ],
self.test_env,
doStepIf = scheduler_is_racy,
hideStepIf = scheduler_is_not_racy))
doStepIf = scheduler_is_racy_do,
hideStepIf = scheduler_is_not_racy_hide))
self.addStep (GDBAnalyzeRacyTests (workdir = WithProperties ('%s/build/gdb/testsuite',
'builddir'),
description = 'analyzing racy tests',
descriptionDone = 'analyzed racy tests',
doStepIf = scheduler_is_racy,
hideStepIf = scheduler_is_not_racy))
doStepIf = scheduler_is_racy_do,
hideStepIf = scheduler_is_not_racy_hide))
##################