From a11cd351a63c5666c99747b1969bf90fefd1d8d3 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Sat, 13 Dec 2014 19:05:38 +0100 Subject: tests: regression: simplify run_test_file() in case `-e' is used 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 --- tests/regression/nft-test.py | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'tests') diff --git a/tests/regression/nft-test.py b/tests/regression/nft-test.py index dea0f369..7e5b4756 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, -- cgit v1.2.3