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
50629d7c
Commit
50629d7c
authored
Jan 07, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Jan 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmiutils/tests: Use BOOL type where appropriate.
parent
aa0eceb5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
path.c
dlls/wmiutils/tests/path.c
+5
-5
No files found.
dlls/wmiutils/tests/path.c
View file @
50629d7c
...
...
@@ -94,7 +94,7 @@ static void test_IWbemPath_SetText(void)
const
WCHAR
*
path
;
ULONG
mode
;
HRESULT
ret
;
int
todo
;
BOOL
todo
;
}
test
[]
=
{
{
path1
,
0
,
WBEM_E_INVALID_PARAMETER
},
...
...
@@ -113,15 +113,15 @@ static void test_IWbemPath_SetText(void)
{
path7
,
WBEMPATH_CREATE_ACCEPT_RELATIVE
,
S_OK
},
{
path7
,
WBEMPATH_CREATE_ACCEPT_ABSOLUTE
,
S_OK
},
{
path7
,
WBEMPATH_CREATE_ACCEPT_ALL
,
S_OK
},
{
path7
,
WBEMPATH_TREAT_SINGLE_IDENT_AS_NS
,
WBEM_E_INVALID_PARAMETER
,
1
},
{
path7
,
WBEMPATH_TREAT_SINGLE_IDENT_AS_NS
,
WBEM_E_INVALID_PARAMETER
,
TRUE
},
{
path7
,
WBEMPATH_TREAT_SINGLE_IDENT_AS_NS
+
1
,
S_OK
},
{
path8
,
WBEMPATH_CREATE_ACCEPT_RELATIVE
,
S_OK
},
{
path8
,
WBEMPATH_CREATE_ACCEPT_ABSOLUTE
,
WBEM_E_INVALID_PARAMETER
,
1
},
{
path8
,
WBEMPATH_CREATE_ACCEPT_ABSOLUTE
,
WBEM_E_INVALID_PARAMETER
,
TRUE
},
{
path8
,
WBEMPATH_CREATE_ACCEPT_ALL
,
S_OK
},
{
path8
,
WBEMPATH_TREAT_SINGLE_IDENT_AS_NS
,
WBEM_E_INVALID_PARAMETER
,
1
},
{
path8
,
WBEMPATH_TREAT_SINGLE_IDENT_AS_NS
,
WBEM_E_INVALID_PARAMETER
,
TRUE
},
{
path8
,
WBEMPATH_TREAT_SINGLE_IDENT_AS_NS
+
1
,
S_OK
},
{
path9
,
WBEMPATH_CREATE_ACCEPT_ABSOLUTE
,
S_OK
},
{
path10
,
WBEMPATH_CREATE_ACCEPT_ABSOLUTE
,
WBEM_E_INVALID_PARAMETER
,
1
},
{
path10
,
WBEMPATH_CREATE_ACCEPT_ABSOLUTE
,
WBEM_E_INVALID_PARAMETER
,
TRUE
},
{
path11
,
WBEMPATH_CREATE_ACCEPT_ABSOLUTE
,
S_OK
},
{
path15
,
WBEMPATH_CREATE_ACCEPT_ALL
,
S_OK
}
};
...
...
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