Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: fixup static lib assertion #307

Merged
merged 2 commits into from
Mar 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/verify-static-libraries.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main():
elif sys.platform.startswith("win32"):
want = (
"advapi32.lib credui.lib kernel32.lib secur32.lib "
"legacy_stdio_definitions.lib kernel32.lib advapi32.lib userenv.lib "
"kernel32.lib advapi32.lib userenv.lib "
"kernel32.lib kernel32.lib ws2_32.lib bcrypt.lib msvcrt.lib "
"legacy_stdio_definitions.lib"
)
Expand All @@ -42,7 +42,7 @@ def main():
if want != got:
print(
"got unexpected list of native static libraries, "
"fix or update README: {} instead of {}"
"fix or update README. Got:\n {}\nInstead of:\n {}"
.format(got, want)
)
sys.exit(1)
Expand Down