diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2017-10-25 13:35:31 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2017-10-25 13:39:41 +0200 |
| commit | 463cebd7f8bf26673732bf5afcd113ee5e2268b7 (patch) | |
| tree | f29b3a987a49cf4135d0968c971fb259bd1594e8 /testsuite.py | |
| parent | dd0e227216e247d2040cdd40bf7397702880cdc4 (diff) | |
Backup
Diffstat (limited to 'testsuite.py')
| -rw-r--r-- | testsuite.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite.py b/testsuite.py index 69eae6e..4eba62a 100644 --- a/testsuite.py +++ b/testsuite.py @@ -110,7 +110,7 @@ def get_items(config, type_): items.append(node.item) rec(node.list) rec(node.next) - rec(config.top_menu) + rec(config.top_node) return items def get_comments(config): @@ -121,7 +121,7 @@ def get_comments(config): items.append(node) rec(node.list) rec(node.next) - rec(config.top_menu) + rec(config.top_node) return items def get_menus(config): @@ -132,7 +132,7 @@ def get_menus(config): items.append(node) rec(node.list) rec(node.next) - rec(config.top_menu) + rec(config.top_node) return items def get_choices(config): @@ -1803,7 +1803,7 @@ def run_compatibility_tests(): if all_passed: print("All selftests and compatibility tests passed") - print(nconfigs, "arch/defconfig pairs tested") + print("{} arch/defconfig pairs tested".format(nconfigs)) else: print("Some tests failed") |
