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
a58945de
Commit
a58945de
authored
Sep 11, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Sep 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mstask: Fix a few failing tests in win2k.
parent
147464c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
task.c
dlls/mstask/tests/task.c
+9
-3
No files found.
dlls/mstask/tests/task.c
View file @
a58945de
...
...
@@ -466,7 +466,9 @@ static void test_SetAccountInformation_GetAccountInformation(void)
ok
(
hres
==
S_OK
,
"Failed setting dummy account with no password: %08x
\n
"
,
hres
);
hres
=
ITask_GetAccountInformation
(
test_task
,
&
account_name
);
ok
(
hres
==
S_OK
,
"GetAccountInformation failed: %08x
\n
"
,
hres
);
ok
(
hres
==
S_OK
||
broken
(
hres
==
HRESULT_FROM_WIN32
(
ERROR_FILE_NOT_FOUND
)),
"GetAccountInformation failed: %08x
\n
"
,
hres
);
if
(
hres
==
S_OK
)
{
ok
(
!
lstrcmpW
(
account_name
,
dummy_account_name
),
...
...
@@ -482,7 +484,9 @@ static void test_SetAccountInformation_GetAccountInformation(void)
ok
(
hres
==
S_OK
,
"Failed setting dummy account with password: %08x
\n
"
,
hres
);
hres
=
ITask_GetAccountInformation
(
test_task
,
&
account_name
);
ok
(
hres
==
S_OK
,
"GetAccountInformation failed: %08x
\n
"
,
hres
);
ok
(
hres
==
S_OK
||
broken
(
hres
==
HRESULT_FROM_WIN32
(
ERROR_FILE_NOT_FOUND
)),
"GetAccountInformation failed: %08x
\n
"
,
hres
);
if
(
hres
==
S_OK
)
{
ok
(
!
lstrcmpW
(
account_name
,
dummy_account_name_b
),
...
...
@@ -495,7 +499,9 @@ static void test_SetAccountInformation_GetAccountInformation(void)
hres
=
ITask_SetAccountInformation
(
test_task
,
empty
,
NULL
);
ok
(
hres
==
S_OK
,
"Failed setting system account: %08x
\n
"
,
hres
);
hres
=
ITask_GetAccountInformation
(
test_task
,
&
account_name
);
ok
(
hres
==
S_OK
,
"GetAccountInformation failed: %08x
\n
"
,
hres
);
ok
(
hres
==
S_OK
||
broken
(
hres
==
HRESULT_FROM_WIN32
(
ERROR_FILE_NOT_FOUND
)),
"GetAccountInformation failed: %08x
\n
"
,
hres
);
if
(
hres
==
S_OK
)
{
ok
(
!
lstrcmpW
(
account_name
,
empty
),
...
...
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