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
c8362ef8
Commit
c8362ef8
authored
May 05, 2023
by
Francois Gouget
Committed by
Alexandre Julliard
May 15, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Use win_skip() for missing APIs.
A missing API is a todo in Wine.
parent
e36e8d4a
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
12 deletions
+12
-12
exception.c
dlls/ntdll/tests/exception.c
+3
-3
om.c
dlls/ntdll/tests/om.c
+1
-1
port.c
dlls/ntdll/tests/port.c
+1
-1
rtl.c
dlls/ntdll/tests/rtl.c
+4
-4
rtlstr.c
dlls/ntdll/tests/rtlstr.c
+2
-2
virtual.c
dlls/ntdll/tests/virtual.c
+1
-1
No files found.
dlls/ntdll/tests/exception.c
View file @
c8362ef8
...
@@ -9509,7 +9509,7 @@ static void test_extended_context(void)
...
@@ -9509,7 +9509,7 @@ static void test_extended_context(void)
if
(
!
pRtlGetEnabledExtendedFeatures
)
if
(
!
pRtlGetEnabledExtendedFeatures
)
{
{
skip
(
"RtlGetEnabledExtendedFeatures is not available.
\n
"
);
win_
skip
(
"RtlGetEnabledExtendedFeatures is not available.
\n
"
);
return
;
return
;
}
}
...
@@ -10492,7 +10492,7 @@ static void test_copy_context(void)
...
@@ -10492,7 +10492,7 @@ static void test_copy_context(void)
if
(
!
pRtlGetEnabledExtendedFeatures
)
if
(
!
pRtlGetEnabledExtendedFeatures
)
{
{
skip
(
"RtlGetEnabledExtendedFeatures is not available.
\n
"
);
win_
skip
(
"RtlGetEnabledExtendedFeatures is not available.
\n
"
);
return
;
return
;
}
}
...
@@ -10969,7 +10969,7 @@ START_TEST(exception)
...
@@ -10969,7 +10969,7 @@ START_TEST(exception)
if
(
pRtlAddFunctionTable
&&
pRtlDeleteFunctionTable
&&
pRtlInstallFunctionTableCallback
&&
pRtlLookupFunctionEntry
)
if
(
pRtlAddFunctionTable
&&
pRtlDeleteFunctionTable
&&
pRtlInstallFunctionTableCallback
&&
pRtlLookupFunctionEntry
)
test_dynamic_unwind
();
test_dynamic_unwind
();
else
else
skip
(
"Dynamic unwind functions not found
\n
"
);
win_
skip
(
"Dynamic unwind functions not found
\n
"
);
test_extended_context
();
test_extended_context
();
test_copy_context
();
test_copy_context
();
test_unwind_from_apc
();
test_unwind_from_apc
();
...
...
dlls/ntdll/tests/om.c
View file @
c8362ef8
...
@@ -2523,7 +2523,7 @@ static void test_object_identity(void)
...
@@ -2523,7 +2523,7 @@ static void test_object_identity(void)
if
(
!
pNtCompareObjects
)
if
(
!
pNtCompareObjects
)
{
{
skip
(
"NtCompareObjects is not available.
\n
"
);
win_
skip
(
"NtCompareObjects is not available.
\n
"
);
return
;
return
;
}
}
...
...
dlls/ntdll/tests/port.c
View file @
c8362ef8
...
@@ -155,7 +155,7 @@ static BOOL init_function_ptrs(void)
...
@@ -155,7 +155,7 @@ static BOOL init_function_ptrs(void)
!
pNtRequestPort
||
!
pNtRegisterThreadTerminatePort
||
!
pNtRequestPort
||
!
pNtRegisterThreadTerminatePort
||
!
pNtConnectPort
||
!
pRtlInitUnicodeString
)
!
pNtConnectPort
||
!
pRtlInitUnicodeString
)
{
{
skip
(
"Needed port functions are not available
\n
"
);
todo_wine
win_
skip
(
"Needed port functions are not available
\n
"
);
FreeLibrary
(
hntdll
);
FreeLibrary
(
hntdll
);
return
FALSE
;
return
FALSE
;
}
}
...
...
dlls/ntdll/tests/rtl.c
View file @
c8362ef8
...
@@ -1133,7 +1133,7 @@ static void test_RtlIpv4StringToAddressEx(void)
...
@@ -1133,7 +1133,7 @@ static void test_RtlIpv4StringToAddressEx(void)
if
(
!
pRtlIpv4StringToAddressExA
)
if
(
!
pRtlIpv4StringToAddressExA
)
{
{
skip
(
"RtlIpv4StringToAddressEx not available
\n
"
);
win_
skip
(
"RtlIpv4StringToAddressEx not available
\n
"
);
return
;
return
;
}
}
...
@@ -1780,7 +1780,7 @@ static void test_RtlIpv6AddressToStringEx(void)
...
@@ -1780,7 +1780,7 @@ static void test_RtlIpv6AddressToStringEx(void)
if
(
!
pRtlIpv6AddressToStringExA
)
if
(
!
pRtlIpv6AddressToStringExA
)
{
{
skip
(
"RtlIpv6AddressToStringExA not available
\n
"
);
win_
skip
(
"RtlIpv6AddressToStringExA not available
\n
"
);
return
;
return
;
}
}
...
@@ -2066,13 +2066,13 @@ static void test_RtlIpv6StringToAddressEx(void)
...
@@ -2066,13 +2066,13 @@ static void test_RtlIpv6StringToAddressEx(void)
if
(
!
pRtlIpv6StringToAddressExW
)
if
(
!
pRtlIpv6StringToAddressExW
)
{
{
skip
(
"RtlIpv6StringToAddressExW not available
\n
"
);
win_
skip
(
"RtlIpv6StringToAddressExW not available
\n
"
);
/* we can continue, just not test W */
/* we can continue, just not test W */
}
}
if
(
!
pRtlIpv6StringToAddressExA
)
if
(
!
pRtlIpv6StringToAddressExA
)
{
{
skip
(
"RtlIpv6StringToAddressExA not available
\n
"
);
win_
skip
(
"RtlIpv6StringToAddressExA not available
\n
"
);
return
;
return
;
}
}
...
...
dlls/ntdll/tests/rtlstr.c
View file @
c8362ef8
...
@@ -2136,7 +2136,7 @@ static void test_RtlUnicodeToUTF8N(void)
...
@@ -2136,7 +2136,7 @@ static void test_RtlUnicodeToUTF8N(void)
if
(
!
pRtlUnicodeToUTF8N
)
if
(
!
pRtlUnicodeToUTF8N
)
{
{
skip
(
"RtlUnicodeToUTF8N un
available
\n
"
);
win_skip
(
"RtlUnicodeToUTF8N is not
available
\n
"
);
return
;
return
;
}
}
...
@@ -2469,7 +2469,7 @@ static void test_RtlUTF8ToUnicodeN(void)
...
@@ -2469,7 +2469,7 @@ static void test_RtlUTF8ToUnicodeN(void)
if
(
!
pRtlUTF8ToUnicodeN
)
if
(
!
pRtlUTF8ToUnicodeN
)
{
{
skip
(
"RtlUTF8ToUnicodeN un
available
\n
"
);
win_skip
(
"RtlUTF8ToUnicodeN is not
available
\n
"
);
return
;
return
;
}
}
...
...
dlls/ntdll/tests/virtual.c
View file @
c8362ef8
...
@@ -1658,7 +1658,7 @@ static void test_user_shared_data(void)
...
@@ -1658,7 +1658,7 @@ static void test_user_shared_data(void)
if
(
!
pRtlGetEnabledExtendedFeatures
)
if
(
!
pRtlGetEnabledExtendedFeatures
)
{
{
skip
(
"RtlGetEnabledExtendedFeatures is not available.
\n
"
);
win_
skip
(
"RtlGetEnabledExtendedFeatures is not available.
\n
"
);
return
;
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