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
ecf8c5af
Commit
ecf8c5af
authored
Feb 26, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Feb 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi/tests: Skip tests for functions that are not available.
parent
e7937f3c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
source.c
dlls/msi/tests/source.c
+18
-0
No files found.
dlls/msi/tests/source.c
View file @
ecf8c5af
...
@@ -972,6 +972,12 @@ static void test_MsiSourceListEnumSources(void)
...
@@ -972,6 +972,12 @@ static void test_MsiSourceListEnumSources(void)
HKEY
url
,
net
,
source
;
HKEY
url
,
net
,
source
;
DWORD
size
;
DWORD
size
;
if
(
!
pMsiSourceListEnumSourcesA
)
{
skip
(
"MsiSourceListEnumSourcesA is not available
\n
"
);
return
;
}
create_test_guid
(
prodcode
,
prod_squashed
);
create_test_guid
(
prodcode
,
prod_squashed
);
get_user_sid
(
&
usersid
);
get_user_sid
(
&
usersid
);
...
@@ -1564,6 +1570,12 @@ static void test_MsiSourceListSetInfo(void)
...
@@ -1564,6 +1570,12 @@ static void test_MsiSourceListSetInfo(void)
LONG
res
;
LONG
res
;
UINT
r
;
UINT
r
;
if
(
!
pMsiSourceListSetInfoA
)
{
skip
(
"MsiSourceListSetInfoA is not available
\n
"
);
return
;
}
create_test_guid
(
prodcode
,
prod_squashed
);
create_test_guid
(
prodcode
,
prod_squashed
);
get_user_sid
(
&
usersid
);
get_user_sid
(
&
usersid
);
...
@@ -1964,6 +1976,12 @@ static void test_MsiSourceListAddMediaDisk(void)
...
@@ -1964,6 +1976,12 @@ static void test_MsiSourceListAddMediaDisk(void)
LONG
res
;
LONG
res
;
UINT
r
;
UINT
r
;
if
(
!
pMsiSourceListAddMediaDiskA
)
{
skip
(
"MsiSourceListAddMediaDiskA is not available
\n
"
);
return
;
}
create_test_guid
(
prodcode
,
prod_squashed
);
create_test_guid
(
prodcode
,
prod_squashed
);
get_user_sid
(
&
usersid
);
get_user_sid
(
&
usersid
);
...
...
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