Commit 92109976fd48e0c10fe77af8e6a3a82d5c6e665a

Patrick Steinhardt 2019-07-18T14:20:18

tests: fix undercounting of suites With the introduction of data variants for suites, we started undercounting the number of suites as we didn't account for those that were executed twice. This was then adjusted to count the number of initializers instead, but this fails to account for suites without any initializers at all. Fix the suite count by counting either the number of initializers or, if there is no initializer, count it as a single suite, only.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/tests/generate.py b/tests/generate.py
old mode 100755
new mode 100644
index 82e4365..9ed6ede
--- a/tests/generate.py
+++ b/tests/generate.py
@@ -210,7 +210,7 @@ class TestSuite(object):
                     module.modified = True
 
     def suite_count(self):
-        return sum(len(module.initializers) for module in self.modules.values())
+        return sum(max(1, len(m.initializers)) for m in self.modules.values())
 
     def callback_count(self):
         return sum(len(module.callbacks) for module in self.modules.values())