diff options
author | Nisarg Shah | 2019-01-16 19:33:58 +0100 |
---|---|---|
committer | Eduardo Habkost | 2019-01-25 14:41:33 +0100 |
commit | 55e0a3463528f0588e4b8813baddc4179777b3e3 (patch) | |
tree | 5949119b5b5885ec2c3d7385c9c6692c2851dbc6 /scripts/device-crash-test | |
parent | Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2019-01-24' into ... (diff) | |
download | qemu-55e0a3463528f0588e4b8813baddc4179777b3e3.tar.gz qemu-55e0a3463528f0588e4b8813baddc4179777b3e3.tar.xz qemu-55e0a3463528f0588e4b8813baddc4179777b3e3.zip |
device-crash-test: Python 3 compatibility fix
Restrict whitelist entry stats in debug mode to be sorted only by
"count", since Python 3 does not implicitly support comparing
dictionaries.
Signed-off-by: Nisarg Shah <nshah@disroot.org>
Message-Id: <20190116183358.30287-1-nshah@disroot.org>
[ehabkost: removed 2 unnecessary hunks from patch]
[ehabkost: edited commit message]
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'scripts/device-crash-test')
-rwxr-xr-x | scripts/device-crash-test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/device-crash-test b/scripts/device-crash-test index 483dafb2fc..2a13fa4f84 100755 --- a/scripts/device-crash-test +++ b/scripts/device-crash-test @@ -557,7 +557,8 @@ def main(): logger.info("Skipped %d test cases", skipped) if args.debug: - stats = sorted([(len(wl_stats.get(i, [])), wl) for i, wl in enumerate(ERROR_WHITELIST)]) + stats = sorted([(len(wl_stats.get(i, [])), wl) for i, wl in + enumerate(ERROR_WHITELIST)], key=lambda x: x[0]) for count, wl in stats: dbg("whitelist entry stats: %d: %r", count, wl) |