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
41751e61
Commit
41751e61
authored
Jul 06, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Remove todo from tests that succeed now.
Tests fixed by
95ddb757
. Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7dff198c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
om.c
dlls/ntdll/tests/om.c
+0
-3
No files found.
dlls/ntdll/tests/om.c
View file @
41751e61
...
...
@@ -929,7 +929,6 @@ static void test_name_limits(void)
for
(
i
=
0
;
i
<
65536
/
sizeof
(
WCHAR
);
i
++
)
str
.
Buffer
[
i
+
wcslen
(
registryW
)]
=
'a'
;
str
.
Length
=
0
;
status
=
pNtCreateKey
(
&
ret
,
GENERIC_ALL
,
&
attr
,
0
,
NULL
,
0
,
NULL
);
todo_wine
ok
(
status
==
STATUS_OBJECT_PATH_SYNTAX_BAD
,
"%u: NtCreateKey failed %lx
\n
"
,
str
.
Length
,
status
);
status
=
pNtCreateKey
(
&
ret
,
GENERIC_ALL
,
&
attr2
,
0
,
NULL
,
0
,
NULL
);
ok
(
status
==
STATUS_INVALID_HANDLE
,
"%u: NtCreateKey failed %lx
\n
"
,
str
.
Length
,
status
);
...
...
@@ -1052,11 +1051,9 @@ static void test_name_limits(void)
attr3
.
RootDirectory
=
0
;
attr2
.
ObjectName
=
attr3
.
ObjectName
=
NULL
;
status
=
pNtCreateKey
(
&
ret
,
GENERIC_ALL
,
&
attr2
,
0
,
NULL
,
0
,
NULL
);
todo_wine
ok
(
status
==
STATUS_ACCESS_VIOLATION
||
status
==
STATUS_INVALID_HANDLE
/* vista wow64 */
,
"NULL: NtCreateKey failed %lx
\n
"
,
status
);
status
=
pNtCreateKey
(
&
ret
,
GENERIC_ALL
,
&
attr3
,
0
,
NULL
,
0
,
NULL
);
todo_wine
ok
(
status
==
STATUS_ACCESS_VIOLATION
,
"NULL: NtCreateKey failed %lx
\n
"
,
status
);
status
=
pNtCreateKey
(
&
ret
,
GENERIC_ALL
,
NULL
,
0
,
NULL
,
0
,
NULL
);
ok
(
status
==
STATUS_ACCESS_VIOLATION
,
"NULL: NtCreateKey failed %lx
\n
"
,
status
);
...
...
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