-
Notifications
You must be signed in to change notification settings - Fork 118
Add tests for NdrCString & NdrWString packing #86
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
Conversation
PyTest Results for 3.11-32524 tests +4 446 ✅ +4 2m 42s ⏱️ +6s Results for commit d6ad334. ± Comparison against base commit c46f086. This pull request removes 15 and adds 19 tests. Note that renamed tests count towards both.♻️ This comment has been updated with latest results. |
PyTest Results for 2.7-32524 tests +4 494 ✅ +4 2m 36s ⏱️ -49s Results for commit d6ad334. ± Comparison against base commit c46f086. This pull request removes 15 and adds 19 tests. Note that renamed tests count towards both.♻️ This comment has been updated with latest results. |
PyTest Results for 2.7-64524 tests +4 516 ✅ +4 2m 32s ⏱️ -17s Results for commit c7c8830. ± Comparison against base commit c46f086. This pull request removes 15 and adds 19 tests. Note that renamed tests count towards both. |
PyTest Results for 2.7-64524 tests +4 516 ✅ +4 2m 30s ⏱️ -19s Results for commit d6ad334. ± Comparison against base commit c46f086. This pull request removes 15 and adds 19 tests. Note that renamed tests count towards both.♻️ This comment has been updated with latest results. |
PyTest Results for 3.6-64524 tests +4 516 ✅ +4 2m 41s ⏱️ +2s Results for commit d6ad334. ± Comparison against base commit c46f086. This pull request removes 15 and adds 19 tests. Note that renamed tests count towards both.♻️ This comment has been updated with latest results. |
PyTest Results for 3.6-32524 tests +4 488 ✅ - 2 2m 57s ⏱️ -13s For more details on these failures, see this check. Results for commit c7c8830. ± Comparison against base commit c46f086. This pull request removes 15 and adds 19 tests. Note that renamed tests count towards both. |
PyTest Results for 3.6-32524 tests +4 494 ✅ +4 3m 3s ⏱️ -7s Results for commit d6ad334. ± Comparison against base commit c46f086. This pull request removes 15 and adds 19 tests. Note that renamed tests count towards both.♻️ This comment has been updated with latest results. |
PyTest Results for 3.11-64524 tests +4 468 ✅ +4 2m 34s ⏱️ +5s Results for commit d6ad334. ± Comparison against base commit c46f086. This pull request removes 15 and adds 19 tests. Note that renamed tests count towards both.♻️ This comment has been updated with latest results. |
Fix #84
Windows does seems to accept any bitstream that ends with
\x00for anFC_C_CSTRING.But for now,
NdrCStringuse ascii encoding to be sure that encoding keep the same number of bytes that the input string.I could also accept bytes() (and would apply no modification) to allow the user to send whatever it wants.
Same for
NdrWString#84 also made me realize there was no test for
NdrCString&NdrWStringpacking. I added some.