Avoid copy&paste coding style pattern by simplifying the code that handles the `-e' option that allows us to run known broken tests. Signed-off-by: Pablo Neira Ayuso <pablo@xxxxxxxxxxxxx> --- tests/regression/nft-test.py | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/tests/regression/nft-test.py b/tests/regression/nft-test.py index dea0f36..7e5b475 100755 --- a/tests/regression/nft-test.py +++ b/tests/regression/nft-test.py @@ -692,23 +692,9 @@ def run_test_file(filename, force_all_family_option, specific_file): continue if need_fix_option: rule[0] = rule[0].rstrip()[1:].strip() - result = rule_add(rule, table_list, chain_list, filename, - lineno, force_all_family_option) - tests += 1 - warning = result[1] - ret = result[0] - total_warning += warning - total_error += result[2] - total_unit_run += result[3] - - if ret != 0: - total_test_passed = False - elif warning == 0: - passed += 1 - continue else: continue - if need_fix_option: + elif need_fix_option: continue result = rule_add(rule, table_list, chain_list, filename, lineno, -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html