From 864ec709ef940ee869054ad14242792703e85ee5 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Sun, 22 May 2016 19:50:17 -0400 Subject: [PATCH] Sending an e-mail with all racy tests, not only the unique ones --- lib/racyanalyze.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/racyanalyze.py b/lib/racyanalyze.py index 27d8b02..7d30174 100644 --- a/lib/racyanalyze.py +++ b/lib/racyanalyze.py @@ -19,18 +19,13 @@ class GDBAnalyzeRacyTests (ShellCommand): p = DejaResults () racy_tests = p.read_racy_sum_text (self.getLog ('stdio').getText ()) - xfails = p.read_xfail (builder, branch) if not racy_tests or not racy_tests[1]: return SUCCESS - elif not xfails or not xfails[1]: - unique_tests = racy_tests[1]['NONE'] - else: - unique_tests = racy_tests[1]['NONE'] - xfails[1]['FAIL'] msg = "*** Regressions found ***\n" msg += "============================\n" - for t in unique_tests: + for t in racy_tests: msg += "FAIL: %s\n" % t msg += "============================\n"