Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2f445e4e
Commit
2f445e4e
authored
Jul 22, 2008
by
Reece Dunn
Committed by
Alexandre Julliard
Jul 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32/tests: Be more verbose on the failing base64 tests on Vista to help locate the failures.
parent
414cdc04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
base64.c
dlls/crypt32/tests/base64.c
+3
-3
No files found.
dlls/crypt32/tests/base64.c
View file @
2f445e4e
...
...
@@ -280,7 +280,7 @@ static void decodeAndCompareBase64_A(LPCSTR toDecode, LPCSTR header,
ok
(
ret
,
"CryptStringToBinaryA failed: %d
\n
"
,
GetLastError
());
else
ok
(
!
ret
&&
GetLastError
()
==
ERROR_INVALID_DATA
,
"Expected
ERROR_INVALID_DATA, got %d
\n
"
,
GetLastError
());
"Expected
!ret and last error ERROR_INVALID_DATA, got ret=%d, error=%d
\n
"
,
ret
,
GetLastError
());
if
(
ret
)
{
buf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
bufLen
);
...
...
@@ -291,8 +291,8 @@ static void decodeAndCompareBase64_A(LPCSTR toDecode, LPCSTR header,
ret
=
pCryptStringToBinaryA
(
str
,
0
,
useFormat
,
buf
,
&
bufLen
,
&
skipped
,
&
usedFormat
);
ok
(
skipped
==
strlen
(
garbage
),
"Expected %d characters
skipped, got %d
\n
"
,
lstrlenA
(
garbage
)
,
skipped
);
"Expected %d characters
of
\"
%s
\"
skipped when trying format %08x, got %d (used format is %08x)
\n
"
,
lstrlenA
(
garbage
),
str
,
useFormat
,
skipped
,
usedFormat
);
HeapFree
(
GetProcessHeap
(),
0
,
buf
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment