From ac13904f2aa78fc6e4d5e85372973e7b831a6983 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Mon, 11 Jul 2016 17:55:46 +0000 Subject: [PATCH] Really ignore nuninst issues for break arches Signed-off-by: Niels Thykier --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index b088ea2..b28c62f 100755 --- a/britney.py +++ b/britney.py @@ -2614,7 +2614,7 @@ class Britney(object): false_positives = expected_nuninst - actual_nuninst # Britney does not quite work correctly with # break/fucked arches, so ignore issues there for now. - if arch not in self.options.break_arches: + if (false_negatives or false_positives) and arch not in self.options.break_arches: only_on_break_archs = False if false_negatives: self.log(" %s - unnoticed nuninst: %s" % (arch, str(false_negatives)), type="E")