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
3b072fb7
Commit
3b072fb7
authored
Feb 23, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Use win_skip() to skip over unimplemented functionality.
parent
bf855d86
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
olefont.c
dlls/oleaut32/tests/olefont.c
+1
-1
olepicture.c
dlls/oleaut32/tests/olepicture.c
+2
-2
varformat.c
dlls/oleaut32/tests/varformat.c
+1
-1
vartype.c
dlls/oleaut32/tests/vartype.c
+5
-5
No files found.
dlls/oleaut32/tests/olefont.c
View file @
3b072fb7
...
...
@@ -808,7 +808,7 @@ START_TEST(olefont)
pOleCreateFontIndirect
=
(
void
*
)
GetProcAddress
(
hOleaut32
,
"OleCreateFontIndirect"
);
if
(
!
pOleCreateFontIndirect
)
{
skip
(
"OleCreateFontIndirect not available
\n
"
);
win_
skip
(
"OleCreateFontIndirect not available
\n
"
);
return
;
}
...
...
dlls/oleaut32/tests/olepicture.c
View file @
3b072fb7
...
...
@@ -477,7 +477,7 @@ static void test_OleCreatePictureIndirect(void)
if
(
!
pOleCreatePictureIndirect
)
{
skip
(
"Skipping OleCreatePictureIndirect tests
\n
"
);
win_
skip
(
"Skipping OleCreatePictureIndirect tests
\n
"
);
return
;
}
...
...
@@ -707,7 +707,7 @@ START_TEST(olepicture)
pOleCreatePictureIndirect
=
(
void
*
)
GetProcAddress
(
hOleaut32
,
"OleCreatePictureIndirect"
);
if
(
!
pOleLoadPicture
)
{
skip
(
"OleLoadPicture is not available
\n
"
);
win_
skip
(
"OleLoadPicture is not available
\n
"
);
return
;
}
...
...
dlls/oleaut32/tests/varformat.c
View file @
3b072fb7
...
...
@@ -449,7 +449,7 @@ static void test_VarWeekdayName(void)
GetLocaleInfoW
(
LOCALE_USER_DEFAULT
,
0
,
NULL
,
0
);
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
skip
(
"GetLocaleInfoW is not implemented
\n
"
);
win_
skip
(
"GetLocaleInfoW is not implemented
\n
"
);
return
;
}
...
...
dlls/oleaut32/tests/vartype.c
View file @
3b072fb7
...
...
@@ -46,7 +46,7 @@ static HMODULE hOleaut32;
/* Get a conversion function ptr, return if function not available */
#define CHECKPTR(func) p##func = (void*)GetProcAddress(hOleaut32, #func); \
if (!p##func) { \
skip("function " # func " not available, not testing it\n"); return; }
win_
skip("function " # func " not available, not testing it\n"); return; }
/* Is a given function exported from oleaut32? */
#define HAVE_FUNC(func) ((void*)GetProcAddress(hOleaut32, #func) != NULL)
...
...
@@ -2349,7 +2349,7 @@ static void test_VarI8Copy(void)
if
(
!
HAVE_OLEAUT32_I8
)
{
skip
(
"I8 and UI8 data types are not available
\n
"
);
win_
skip
(
"I8 and UI8 data types are not available
\n
"
);
return
;
}
...
...
@@ -2379,7 +2379,7 @@ static void test_VarI8ChangeTypeEx(void)
if
(
!
HAVE_OLEAUT32_I8
)
{
skip
(
"I8 and UI8 data types are not available
\n
"
);
win_
skip
(
"I8 and UI8 data types are not available
\n
"
);
return
;
}
...
...
@@ -2611,7 +2611,7 @@ static void test_VarUI8Copy(void)
if
(
!
HAVE_OLEAUT32_I8
)
{
skip
(
"I8 and UI8 data types are not available
\n
"
);
win_
skip
(
"I8 and UI8 data types are not available
\n
"
);
return
;
}
...
...
@@ -2641,7 +2641,7 @@ static void test_VarUI8ChangeTypeEx(void)
if
(
!
HAVE_OLEAUT32_I8
)
{
skip
(
"I8 and UI8 data types are not available
\n
"
);
win_
skip
(
"I8 and UI8 data types are not available
\n
"
);
return
;
}
...
...
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