Skip to content

Commit 1509f7b

Browse files
committed
Investigate bug in apisetmap testing on gitlab CI
1 parent c7c8830 commit 1509f7b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_apisetmap.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ def verify_apisetmap_parsing(apisetmap_base, version=None):
3232
# Verify that at least one entry resolve to kernel32.dll
3333
# This ensure that the ApiSetMap parsing works at least a little
3434
assert "kernel32.dll" in apisetmap_dict.values()
35+
for dll in sorted(apisetmap_dict):
36+
print(dll)
3537
assert all(any(dll.startswith(pref) for pref in KNOWN_APISETMAP_PREFIX) for dll in apisetmap_dict)
3638
# This first key was found in most of the tested version by hand
3739
# MS-Win found on: 6.1.7600 (Win7)

0 commit comments

Comments
 (0)