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
f3f8619f
Commit
f3f8619f
authored
Jan 27, 2022
by
Fabian Maurer
Committed by
Alexandre Julliard
Jan 27, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opcservices/tests: Avoid "misleading indentation" warnings.
Signed-off-by:
Fabian Maurer
<
dark.shadow4@web.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ad2dc608
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
opcservices.c
dlls/opcservices/tests/opcservices.c
+4
-4
No files found.
dlls/opcservices/tests/opcservices.c
View file @
f3f8619f
...
...
@@ -635,7 +635,7 @@ static void test_rel_part_uri(void)
hr
=
IOpcPartUri_GetRawUri
(
rel_uri
,
&
str
);
ok
(
SUCCEEDED
(
hr
),
"Failed to get rel uri, hr %#x.
\n
"
,
hr
);
todo_wine_if
(
i
==
3
||
i
==
4
||
i
==
8
||
i
==
9
)
todo_wine_if
(
i
==
3
||
i
==
4
||
i
==
8
||
i
==
9
)
ok
(
!
lstrcmpW
(
str
,
rel_uriW
),
"%u: unexpected rel uri %s, expected %s.
\n
"
,
i
,
wine_dbgstr_w
(
str
),
wine_dbgstr_w
(
rel_uriW
));
SysFreeString
(
str
);
...
...
@@ -1136,7 +1136,7 @@ static void test_combine_uri(void)
hr
=
IOpcPartUri_GetRawUri
(
combined_uri
,
&
str
);
ok
(
SUCCEEDED
(
hr
),
"%u: failed to get raw uri, hr %#x.
\n
"
,
i
,
hr
);
todo_wine_if
(
i
==
2
||
i
==
3
)
todo_wine_if
(
i
==
2
||
i
==
3
)
ok
(
!
lstrcmpW
(
str
,
combinedW
),
"%u: unexpected uri %s.
\n
"
,
i
,
wine_dbgstr_w
(
str
));
SysFreeString
(
str
);
...
...
@@ -1190,7 +1190,7 @@ static void test_create_part_uri(void)
hr
=
IOpcPartUri_GetRawUri
(
part_uri
,
&
str
);
ok
(
SUCCEEDED
(
hr
),
"Failed to get raw uri, hr %#x.
\n
"
,
hr
);
todo_wine_if
(
i
==
1
||
i
==
2
||
i
==
4
)
todo_wine_if
(
i
==
1
||
i
==
2
||
i
==
4
)
ok
(
!
lstrcmpW
(
str
,
rawW
),
"%u: unexpected raw uri %s.
\n
"
,
i
,
wine_dbgstr_w
(
str
));
SysFreeString
(
str
);
...
...
@@ -1200,7 +1200,7 @@ static void test_create_part_uri(void)
ret
=
FALSE
;
hr
=
IOpcPartUri_IsEqual
(
part_uri
,
uri
,
&
ret
);
ok
(
SUCCEEDED
(
hr
),
"IsEqual failed, hr %#x.
\n
"
,
hr
);
todo_wine_if
(
i
==
1
||
i
==
2
||
i
==
4
)
todo_wine_if
(
i
==
1
||
i
==
2
||
i
==
4
)
ok
(
!!
ret
,
"%u: unexpected result %d.
\n
"
,
i
,
ret
);
IOpcPartUri_Release
(
part_uri
);
...
...
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