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
a43f5006
Commit
a43f5006
authored
Mar 02, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdsapi/tests: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a5286b87
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
20 deletions
+19
-20
Makefile.in
dlls/ntdsapi/tests/Makefile.in
+0
-1
ntdsapi.c
dlls/ntdsapi/tests/ntdsapi.c
+19
-19
No files found.
dlls/ntdsapi/tests/Makefile.in
View file @
a43f5006
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
TESTDLL
=
ntdsapi.dll
IMPORTS
=
ntdsapi
...
...
dlls/ntdsapi/tests/ntdsapi.c
View file @
a43f5006
...
...
@@ -47,41 +47,41 @@ static void test_DsMakeSpn(void)
spn_length
=
ARRAY_SIZE
(
spn
);
ret
=
DsMakeSpnW
(
NULL
,
NULL
,
NULL
,
0
,
NULL
,
&
spn_length
,
spn
);
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"DsMakeSpnW should have failed with ERROR_INVALID_PARAMETER instead of %d
\n
"
,
ret
);
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"DsMakeSpnW should have failed with ERROR_INVALID_PARAMETER instead of %
l
d
\n
"
,
ret
);
spn_length
=
ARRAY_SIZE
(
spn
);
ret
=
DsMakeSpnW
(
NULL
,
wszServiceHost
,
NULL
,
0
,
NULL
,
&
spn_length
,
spn
);
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"DsMakeSpnW should have failed with ERROR_INVALID_PARAMETER instead of %d
\n
"
,
ret
);
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"DsMakeSpnW should have failed with ERROR_INVALID_PARAMETER instead of %
l
d
\n
"
,
ret
);
spn_length
=
ARRAY_SIZE
(
spn
);
ret
=
DsMakeSpnW
(
wszServiceClass
,
wszServiceHost
,
NULL
,
0
,
NULL
,
&
spn_length
,
spn
);
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %d
\n
"
,
ret
);
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %
l
d
\n
"
,
ret
);
ok
(
!
lstrcmpW
(
spn
,
wszSpn1
),
"DsMakeSpnW returned unexpected SPN %s
\n
"
,
wine_dbgstr_w
(
spn
));
ok
(
spn_length
==
lstrlenW
(
wszSpn1
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %d
\n
"
,
lstrlenW
(
wszSpn1
)
+
1
,
spn_length
);
ok
(
spn_length
==
lstrlenW
(
wszSpn1
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %
l
d
\n
"
,
lstrlenW
(
wszSpn1
)
+
1
,
spn_length
);
spn_length
=
ARRAY_SIZE
(
spn
);
ret
=
DsMakeSpnW
(
wszServiceClass
,
wszServiceHost
,
wszInstanceName
,
0
,
NULL
,
&
spn_length
,
spn
);
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %d
\n
"
,
ret
);
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %
l
d
\n
"
,
ret
);
ok
(
!
lstrcmpW
(
spn
,
wszSpn2
),
"DsMakeSpnW returned unexpected SPN %s
\n
"
,
wine_dbgstr_w
(
spn
));
ok
(
spn_length
==
lstrlenW
(
wszSpn2
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %d
\n
"
,
lstrlenW
(
wszSpn2
)
+
1
,
spn_length
);
ok
(
spn_length
==
lstrlenW
(
wszSpn2
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %
l
d
\n
"
,
lstrlenW
(
wszSpn2
)
+
1
,
spn_length
);
spn_length
=
ARRAY_SIZE
(
spn
);
ret
=
DsMakeSpnW
(
wszServiceClass
,
wszServiceHost
,
wszInstanceName
,
555
,
NULL
,
&
spn_length
,
spn
);
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %d
\n
"
,
ret
);
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %
l
d
\n
"
,
ret
);
ok
(
!
lstrcmpW
(
spn
,
wszSpn3
),
"DsMakeSpnW returned unexpected SPN %s
\n
"
,
wine_dbgstr_w
(
spn
));
ok
(
spn_length
==
lstrlenW
(
wszSpn3
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %d
\n
"
,
lstrlenW
(
wszSpn3
)
+
1
,
spn_length
);
ok
(
spn_length
==
lstrlenW
(
wszSpn3
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %
l
d
\n
"
,
lstrlenW
(
wszSpn3
)
+
1
,
spn_length
);
spn_length
=
ARRAY_SIZE
(
spn
);
ret
=
DsMakeSpnW
(
wszServiceClass
,
wszServiceHost
,
wszInstanceName
,
555
,
wszReferrer
,
&
spn_length
,
spn
);
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %d
\n
"
,
ret
);
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %
l
d
\n
"
,
ret
);
ok
(
!
lstrcmpW
(
spn
,
wszSpn4
),
"DsMakeSpnW returned unexpected SPN %s
\n
"
,
wine_dbgstr_w
(
spn
));
ok
(
spn_length
==
lstrlenW
(
wszSpn4
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %d
\n
"
,
lstrlenW
(
wszSpn4
)
+
1
,
spn_length
);
ok
(
spn_length
==
lstrlenW
(
wszSpn4
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %
l
d
\n
"
,
lstrlenW
(
wszSpn4
)
+
1
,
spn_length
);
spn_length
=
ARRAY_SIZE
(
spn
);
ret
=
DsMakeSpnW
(
wszServiceClass
,
wszServiceHost
,
NULL
,
555
,
wszReferrer
,
&
spn_length
,
spn
);
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %d
\n
"
,
ret
);
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %
l
d
\n
"
,
ret
);
ok
(
!
lstrcmpW
(
spn
,
wszSpn5
),
"DsMakeSpnW returned unexpected SPN %s
\n
"
,
wine_dbgstr_w
(
spn
));
ok
(
spn_length
==
lstrlenW
(
wszSpn5
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %d
\n
"
,
lstrlenW
(
wszSpn5
)
+
1
,
spn_length
);
ok
(
spn_length
==
lstrlenW
(
wszSpn5
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %
l
d
\n
"
,
lstrlenW
(
wszSpn5
)
+
1
,
spn_length
);
}
static
void
test_DsClientMakeSpnForTargetServer
(
void
)
...
...
@@ -93,24 +93,24 @@ static void test_DsClientMakeSpnForTargetServer(void)
WCHAR
buf
[
256
];
ret
=
DsClientMakeSpnForTargetServerW
(
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"got %u
\n
"
,
ret
);
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"got %
l
u
\n
"
,
ret
);
ret
=
DsClientMakeSpnForTargetServerW
(
classW
,
NULL
,
NULL
,
NULL
);
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"got %u
\n
"
,
ret
);
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"got %
l
u
\n
"
,
ret
);
ret
=
DsClientMakeSpnForTargetServerW
(
classW
,
hostW
,
NULL
,
NULL
);
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"got %u
\n
"
,
ret
);
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"got %
l
u
\n
"
,
ret
);
len
=
0
;
ret
=
DsClientMakeSpnForTargetServerW
(
classW
,
hostW
,
&
len
,
NULL
);
ok
(
ret
==
ERROR_BUFFER_OVERFLOW
,
"got %u
\n
"
,
ret
);
ok
(
len
==
lstrlenW
(
resultW
)
+
1
,
"got %u
\n
"
,
len
);
ok
(
ret
==
ERROR_BUFFER_OVERFLOW
,
"got %
l
u
\n
"
,
ret
);
ok
(
len
==
lstrlenW
(
resultW
)
+
1
,
"got %
l
u
\n
"
,
len
);
len
=
ARRAY_SIZE
(
buf
);
buf
[
0
]
=
0
;
ret
=
DsClientMakeSpnForTargetServerW
(
classW
,
hostW
,
&
len
,
buf
);
ok
(
ret
==
ERROR_SUCCESS
,
"got %u
\n
"
,
ret
);
ok
(
len
==
lstrlenW
(
resultW
)
+
1
,
"got %u
\n
"
,
len
);
ok
(
ret
==
ERROR_SUCCESS
,
"got %
l
u
\n
"
,
ret
);
ok
(
len
==
lstrlenW
(
resultW
)
+
1
,
"got %
l
u
\n
"
,
len
);
ok
(
!
lstrcmpW
(
buf
,
resultW
),
"wrong data
\n
"
);
}
...
...
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