| Index: scripts/slave/recipe_modules/auto_bisect/bisector.py
|
| diff --git a/scripts/slave/recipe_modules/auto_bisect/bisector.py b/scripts/slave/recipe_modules/auto_bisect/bisector.py
|
| index b2002b08ce0931a0639d6a13743388ed0a833c87..3e11582776b66fa8e3861d26c1f372c13764e050 100644
|
| --- a/scripts/slave/recipe_modules/auto_bisect/bisector.py
|
| +++ b/scripts/slave/recipe_modules/auto_bisect/bisector.py
|
| @@ -487,8 +487,9 @@ class Bisector(object):
|
| other in a statistically significant manner. False if such difference could
|
| not be established in the time or sample size allowed.
|
| """
|
| - if self.test_type != 'perf':
|
| - return True
|
| + if self.test_type == 'return_code':
|
| + return (self.good_rev.overall_return_code !=
|
| + self.bad_rev.overall_return_code)
|
|
|
| if self.bypass_stats_check:
|
| dummy_result = self.good_rev.values != self.bad_rev.values
|
|
|