From 63306858cf439b6de608b9129e602cf7ea6ddcf0 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Fri, 9 Mar 2018 23:17:15 +0100 Subject: testsuite.py: Don't count defconfig files Not that important of a stat, plus there might be more tests that process defconfig files soon, making it kinda meaningless. --- testsuite.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/testsuite.py b/testsuite.py index b82bc15..b77dd5c 100644 --- a/testsuite.py +++ b/testsuite.py @@ -89,9 +89,6 @@ speedy = False obsessive = False log = False -# Number of arch/defconfig pairs tested so far -nconfigs = 0 - def run_tests(): global speedy, obsessive, log for s in sys.argv[1:]: @@ -1737,7 +1734,6 @@ def run_compatibility_tests(): if all_passed: print("All selftests and compatibility tests passed") - print("{} arch/defconfig pairs tested".format(nconfigs)) else: print("Some tests failed") sys.exit(1) @@ -1984,7 +1980,6 @@ def test_defconfig(conf, arch, srcarch): With logging enabled, this test appends any failures to a file test_defconfig_fails in the root. """ - global nconfigs defconfigs = [] def add_configs_for_arch(srcarch): @@ -2024,8 +2019,6 @@ def test_defconfig(conf, arch, srcarch): for defconfig in defconfigs: rm_configs() - nconfigs += 1 - conf.load_config(defconfig) conf.write_config("._config") if speedy: -- cgit v1.2.3