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
bf70d355
Commit
bf70d355
authored
Oct 19, 2010
by
Juan Lang
Committed by
Alexandre Julliard
Oct 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32/tests: Show expected values in ok output.
parent
e21cb8fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
15 deletions
+5
-15
str.c
dlls/crypt32/tests/str.c
+5
-15
No files found.
dlls/crypt32/tests/str.c
View file @
bf70d355
...
...
@@ -26,11 +26,6 @@
#include "wine/test.h"
/*#define DUMP_STRINGS*/
#ifdef DUMP_STRINGS
#include "wine/debug.h"
#endif
typedef
struct
_CertRDNAttrEncoding
{
LPCSTR
pszObjId
;
DWORD
dwValueType
;
...
...
@@ -303,11 +298,8 @@ static void test_CertRDNValueToStrW(void)
buffer
,
sizeof
(
buffer
)
/
sizeof
(
buffer
[
0
]));
ok
(
ret
==
lstrlenW
(
attrs
[
i
].
str
)
+
1
,
"Expected length %d, got %d
\n
"
,
lstrlenW
(
attrs
[
i
].
str
)
+
1
,
ret
);
ok
(
!
lstrcmpW
(
buffer
,
attrs
[
i
].
str
),
"Unexpected value
\n
"
);
#ifdef DUMP_STRINGS
trace
(
"Expected %s, got %s
\n
"
,
ok
(
!
lstrcmpW
(
buffer
,
attrs
[
i
].
str
),
"Expected %s, got %s
\n
"
,
wine_dbgstr_w
(
attrs
[
i
].
str
),
wine_dbgstr_w
(
buffer
));
#endif
}
}
...
...
@@ -489,13 +481,11 @@ static void test_NameToStrConversionW(PCERT_NAME_BLOB pName, DWORD dwStrType,
ok
(
i
==
lstrlenW
(
expected
)
+
1
,
"Expected %d chars, got %d
\n
"
,
lstrlenW
(
expected
)
+
1
,
i
);
if
(
todo
)
todo_wine
ok
(
!
lstrcmpW
(
buffer
,
expected
),
"Unexpected value
\n
"
);
todo_wine
ok
(
!
lstrcmpW
(
buffer
,
expected
),
"Expected %s, got %s
\n
"
,
wine_dbgstr_w
(
expected
),
wine_dbgstr_w
(
buffer
));
else
ok
(
!
lstrcmpW
(
buffer
,
expected
),
"Unexpected value
\n
"
);
#ifdef DUMP_STRINGS
trace
(
"Expected %s, got %s
\n
"
,
wine_dbgstr_w
(
expected
),
wine_dbgstr_w
(
buffer
));
#endif
ok
(
!
lstrcmpW
(
buffer
,
expected
),
"Expected %s, got %s
\n
"
,
wine_dbgstr_w
(
expected
),
wine_dbgstr_w
(
buffer
));
}
static
const
WCHAR
simpleCN_W
[]
=
{
'C'
,
'N'
,
'='
,
'1'
,
0
};
...
...
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