summaryrefslogtreecommitdiff
path: root/testsuite.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-03-09 23:17:15 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-03-09 23:17:15 +0100
commit63306858cf439b6de608b9129e602cf7ea6ddcf0 (patch)
treed23e7bfa3d26867332aa38827cd27fcb069d3dc7 /testsuite.py
parent77d1cc9302f2b18cec6763967e53ad8cbcce36c5 (diff)
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.
Diffstat (limited to 'testsuite.py')
-rw-r--r--testsuite.py7
1 files changed, 0 insertions, 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: