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
b5812e00
Commit
b5812e00
authored
Sep 02, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Sep 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fix a failing test in NT4.
parent
fc3019ac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
rtlstr.c
dlls/ntdll/tests/rtlstr.c
+6
-1
No files found.
dlls/ntdll/tests/rtlstr.c
View file @
b5812e00
...
...
@@ -1696,12 +1696,17 @@ static void test_RtlIsTextUnicode(void)
WCHAR
mixed_controls
[]
=
{
'\t'
,
0x9000
,
0x0d00
,
'\n'
,
0
};
WCHAR
*
be_unicode
;
WCHAR
*
be_unicode_no_controls
;
BOOLEAN
res
;
int
flags
;
int
i
;
ok
(
!
pRtlIsTextUnicode
(
ascii
,
sizeof
(
ascii
),
NULL
),
"ASCII text detected as Unicode
\n
"
);
ok
(
pRtlIsTextUnicode
(
unicode
,
sizeof
(
unicode
),
NULL
),
"Text should be Unicode
\n
"
);
res
=
pRtlIsTextUnicode
(
unicode
,
sizeof
(
unicode
),
NULL
);
ok
(
res
||
broken
(
res
==
FALSE
),
/* NT4 */
"Text should be Unicode
\n
"
);
ok
(
!
pRtlIsTextUnicode
(
unicode
,
sizeof
(
unicode
)
-
1
,
NULL
),
"Text should be Unicode
\n
"
);
flags
=
IS_TEXT_UNICODE_UNICODE_MASK
;
...
...
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