Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e05b1d0a
Commit
e05b1d0a
authored
Sep 10, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Sep 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Remove a test of an undocumented function that is inconsistent across platforms.
parent
9b968811
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
stringtable.c
dlls/setupapi/tests/stringtable.c
+1
-8
No files found.
dlls/setupapi/tests/stringtable.c
View file @
e05b1d0a
...
...
@@ -159,7 +159,7 @@ static void test_StringTableLookUpString(void)
static
void
test_StringTableStringFromId
(
void
)
{
WCHAR
*
string2
,
*
string3
;
WCHAR
*
string2
;
int
result
;
/* correct */
...
...
@@ -168,13 +168,6 @@ static void test_StringTableStringFromId(void)
result
=
lstrcmpiW
(
string
,
string2
);
ok
(
result
==
0
,
"StringID %p does not match requested StringID %p
\n
"
,
string
,
string2
);
/* This should never work */
string3
=
pStringTableStringFromId
(
table
,
0
);
ok
(
string3
!=
NULL
,
"Failed to look up string by ID from String Table
\n
"
);
result
=
lstrcmpiW
(
string
,
string3
);
ok
(
result
!=
0
,
"StringID %p matches requested StringID %p
\n
"
,
string
,
string3
);
}
START_TEST
(
stringtable
)
...
...
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