From dbcd5ab39f935c0ab58eecd757514bcdd274a138 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Tue, 15 Mar 2016 19:39:18 -0400 Subject: [PATCH] hideStepIf adjustment, part 3 --- master.cfg | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/master.cfg b/master.cfg index 5d18931..88052ae 100644 --- a/master.cfg +++ b/master.cfg @@ -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)) ##################