We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7c8830 commit 1509f7bCopy full SHA for 1509f7b
1 file changed
tests/test_apisetmap.py
@@ -32,6 +32,8 @@ def verify_apisetmap_parsing(apisetmap_base, version=None):
32
# Verify that at least one entry resolve to kernel32.dll
33
# This ensure that the ApiSetMap parsing works at least a little
34
assert "kernel32.dll" in apisetmap_dict.values()
35
+ for dll in sorted(apisetmap_dict):
36
+ print(dll)
37
assert all(any(dll.startswith(pref) for pref in KNOWN_APISETMAP_PREFIX) for dll in apisetmap_dict)
38
# This first key was found in most of the tested version by hand
39
# MS-Win found on: 6.1.7600 (Win7)
0 commit comments